$(function () { // Set currentCellChanged event handler function $(".selector").wijgrid({ currentCellChanged : function (e) { } }); });
currentCellChanged = function ( e : Object ) { };
Parameters
- e
- The jQuery.Event object.
$(function () { // Set currentCellChanged event handler function $(".selector").wijgrid({ currentCellChanged : function (e) { } }); });
currentCellChanged = function ( e : Object ) { };
// Gets the data row bound to the current cell. $("#element").wijgrid({ currentCellChanged: function (e, args) { var rowObj = $(e.target).wijgrid("currentCell").row(); if (rowObj) { var dataItem = rowObj.data; // current data item (after the cell is changed). } } });