Wijmo UI for the Web
click Field
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.

Syntax
var instance; // Type: wijmo.grid.ICommandButton;
var value; // Type: any
value = instance.click;
var click : any;
Example
$("#element").wijgrid({
   columns: [{
      deleteCommand: {
         click: function(e, args) {
            return confirm("Are you sure?");
         }
      }
   }]
});
See Also

Reference

ICommandButton Interface