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