jQuery.wijmo.wijgrid Namespace > options type : afterCellUpdate Event |
Javascript (Usage) | |
---|---|
var instance; // Type: options instance.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"))); } });