var instance; // Type: wijmo.grid.IWijgridOptions; var value; // Type: any value = instance.pageIndexChanged;
var pageIndexChanged : any;
The pageIndexChanged event handler is a function that is called after the page index is changed, such as when you use the numeric buttons to swtich between pages or assign a new value to the pageIndex option.
var instance; // Type: wijmo.grid.IWijgridOptions; var value; // Type: any value = instance.pageIndexChanged;
var pageIndexChanged : any;
// Supply a callback function to handle the pageIndexChanged event: $("#element").wijgrid({ pageIndexChanged: function (e, args) { alert("The new pageIndex is: " + args.newPageIndex); } });