ComponentOne GridView for ASP.NET WebForms
jQuery.wijmo.c1gridview Namespace / options type / filtering Event
In This Topic
    filtering Event
    In This Topic
    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 filtering event handler function
    widgetInstance.option("filtering", function (e, args) { } );
    filtering = function ( 
       e : Object,
       args : wijmo.grid.IFilteringEventArgs
    ) { };

    Parameters

    e
    args
    See Also