ComponentOne GridView for ASP.NET WebForms
jQuery.wijmo.c1gridview Namespace / options type / afterCellUpdate Event
The jQuery.Event object.
The data with this event.
In This Topic
    afterCellUpdate Event
    In This Topic
    The afterCellUpdate event handler is a function that is called after a cell has been updated. Among other functions, this event allows you to track and store the indices of changed rows or columns.
    Syntax
    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) { } );
    afterCellUpdate = function ( 
       e : Object,
       args : wijmo.grid.IAfterCellUpdateEventArgs
    ) { };

    Parameters

    e
    The jQuery.Event object.
    args
    The data with this event.
    Example
    // 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")));
    	}
    });
    Remarks
    You can bind to the event either by type or by name. Bind to the event by name: $("#element").wijgrid({ afterCellUpdate: function (e, args) { // some code here }}); * Bind to the event by type: $("#element").bind("wijgridaftercellupdate", function (e, args) { // some code here });
    See Also