wijmo.grid.wijgrid Namespace > options type : cellClicked Event |
Javascript (Usage) | |
---|---|
$(function () { // Set cellClicked event handler function $(".selector").wijgrid({ 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()); } });