wijmo.grid.wijgrid Namespace > options type : pagerSettings Option |
Determines the pager settings for the grid including the mode (page buttons or next/previous buttons), number of page buttons, and position where the buttons appear.
Javascript (Usage) | |
---|---|
$(function () { // Get value var returnsValue; // Type: wijmo.grid.IPagerSettings returnsValue = $(".selector").wijgrid("option", "pagerSettings"); // Set value var newValue; // Type: wijmo.grid.IPagerSettings $(".selector").wijgrid("option", "pagerSettings", newValue); }); |
Javascript (Specification) | |
---|---|
var pagerSettings : IPagerSettings; |
// Display the pager at the top of the wijgrid. $("#element").wijgrid({ pagerSettings: { position: "top" } });