jQuery.wijmo.wijgrid Namespace > options type : cellClicked Event |
Javascript (Usage) | |
---|---|
var instance; // Type: options instance.cellClicked = function(e, args) { }; |
Javascript (Specification) | |
---|---|
cellClicked = function ( e : Object, args : ICellClickedEventArgs ) { }; |
// 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()); } });