var instance; // Type: wijmo.grid.ICommandButton; var value; // Type: any value = instance.click;
var click : any;
The click event handler is a function that is called when a button is clicked. This event is cancellable.
var instance; // Type: wijmo.grid.ICommandButton; var value; // Type: any value = instance.click;
var click : any;
$("#element").wijgrid({ columns: [{ deleteCommand: { click: function(e, args) { return confirm("Are you sure?"); } } }] });