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