jQuery.wijmo.wijgrid Namespace > options type : pageIndexChanged Event |
Javascript (Usage) | |
---|---|
var instance; // Type: options instance.pageIndexChanged = function(e, args) { }; |
Javascript (Specification) | |
---|---|
pageIndexChanged = function ( e : Object, args : IPageIndexChangedEventArgs ) { }; |
// Supply a callback function to handle the pageIndexChanged event: $("#element").wijgrid({ pageIndexChanged: function (e, args) { alert("The new pageIndex is: " + args.newPageIndex); } });