jQuery.wijmo.c1gridview Namespace > options type : afterCellUpdate Event |
var options; // Type: jQuery.wijmo.c1gridview.options // Create a new c1gridview widget $(".selector").c1gridview(options); // Get a previously created c1gridview widget instance var widgetInstance; // Type: jQuery.wijmo.c1gridview widgetInstance = $(".selector").data("wijmo-c1gridview"); // Set afterCellUpdate event handler function widgetInstance.option("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"))); } });