$(function () { // Set filtered event handler function $(".selector").wijgrid({ filtered : function (e, args) { } }); });
Parameters
- e
- The jQuery.Event object.
- args
- The data with this event.
$(function () { // Set filtered event handler function $(".selector").wijgrid({ filtered : function (e, args) { } }); });
// $("#element").wijgrid({ filtered: function (e, args) { alert("The filtered data contains: " + $(this).wijgrid("dataView").count() + " rows"); } });