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