| jQuery.wijmo.c1gridview Namespace > options type : filtered 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 filtered event handler function
widgetInstance.option("filtered", function (e, args) { } );
// $("#element").wijgrid({ filtered: function (e, args) { alert("The filtered data contains: " + $(this).wijgrid("dataView").count() + " rows"); } });