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