ComponentOne GridView for ASP.NET WebForms
jQuery.wijmo.c1gridview Namespace / options type / rendering Event
The jQuery.Event object.
In This Topic
    rendering Event
    In This Topic
    The rendering event handler is a function that is called when the wijgrid is about to render. Normally you do not need to use this event.
    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 rendering event handler function
    widgetInstance.option("rendering", function (e) { } );
    rendering = function ( 
       e : Object
    ) { };

    Parameters

    e
    The jQuery.Event object.
    Example
    $("#element").wijgrid({
    	rendering: function (e) {
    		alert("rendering");
    	}
    });
    Remarks
    You can bind to the event either by type or by name. Bind to the event by name: $("#element").wijgrid({ rendering: function (e) { // some code here }}); * Bind to the event by type: $("#element").bind("wijgridrendering", function (e) { // some code here });
    See Also