Wijmo UI for the Web
click Field

The click event handler is a function that is called when a button is clicked. This event is cancellable.

Syntax
Javascript (Usage) 
var instance; // Type: wijmo.grid.ICommandButton;
var value; // Type: Function
value = instance.click;
Javascript (Specification) 
var click : Function;
Example
$("#element").wijgrid({
   columns: [{
      deleteCommand: {
         click: function(e, args) {
            return confirm("Are you sure?");
         }
      }
   }]
});
Browser Compatibility
7
5
5

See Also

Reference

ICommandButton Interface

 

 


© 2013 All Rights Reserved.

Send comments on this topic.