$(function () { // Set pageIndexChanging event handler function $(".selector").wijgrid({ pageIndexChanging : function (e, args) { } }); });
Parameters
- e
- The jQuery.Event object.
- args
- The data with this event.
$(function () { // Set pageIndexChanging event handler function $(".selector").wijgrid({ pageIndexChanging : function (e, args) { } }); });
// Cancel the event by returning false $("#element").wijgrid({ pageIndexChanging: function (e, args) { return false; } });