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