$(function () { // Set afterCellUpdate event handler function $(".selector").wijgrid({ afterCellUpdate : function (e, args) { } }); });
Parameters
- e
- The jQuery.Event object.
- args
- The data with this event.
$(function () { // Set afterCellUpdate event handler function $(".selector").wijgrid({ afterCellUpdate : function (e, args) { } }); });
// 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"))); } });