wijmo.grid.wijgrid Namespace > options type : pageIndex Option |
Default value: 0
Determines the zero-based index of the current page. You can use this to access a specific page, for example, when using the paging feature.
Javascript (Usage) | |
---|---|
$(function () { // Get value var returnsValue; // Type: number returnsValue = $(".selector").wijgrid("option", "pageIndex"); // Set value var newValue; // Type: number $(".selector").wijgrid("option", "pageIndex", newValue); }); |
Javascript (Specification) | |
---|---|
|
$("#element").wijgrid({ pageIndex: 0 });