var instance; // Type: wijmo.grid.IDetailSettings; var value; // Type: any value = instance.cellClicked;
var cellClicked : any;
The cellClicked event handler is a function that is called when a cell is clicked. You can use this event to get the information of a clicked cell using the args parameter.
var instance; // Type: wijmo.grid.IDetailSettings; var value; // Type: any value = instance.cellClicked;
var cellClicked : any;
// The sample uses the cellClicked event to trigger an alert when the cell is clicked. $("#element").wijgrid({ cellClicked: function (e, args) { alert(args.cell.value()); } });