var instance; // Type: wijmo.grid.IDetailSettings; var value; // Type: any value = instance.pageIndexChanging;
var pageIndexChanging : any;
The pageIndexChanging event handler is a function that is called before the page index is changed. This event is cancellable.
var instance; // Type: wijmo.grid.IDetailSettings; var value; // Type: any value = instance.pageIndexChanging;
var pageIndexChanging : any;
// Cancel the event by returning false $("#element").wijgrid({ pageIndexChanging: function (e, args) { return false; } });