wijmo.grid.wijgrid Namespace > options type : afterCellUpdate Event |
Javascript (Usage) | |
---|---|
$(function () { // Set afterCellUpdate event handler function $(".selector").wijgrid({ afterCellUpdate : function (e, args) { } }); }); |
Javascript (Specification) | |
---|---|
afterCellUpdate = function ( e : Object, args : IAfterCellUpdateEventArgs ) { }; |
// Once the cell has been updated, the information from the underlying data is dumped into the "#log" element. $("#element").wijgrid({ afterCellUpdate: function(e, args) { $("#log").html(dump($("#demo").wijgrid("data"))); } });