wijmo.grid.wijgrid Namespace > options type : allowPaging Option |
Default value: false
Determines whether the grid should display paging buttons. The number of rows on a page is determined by the pageSize option.
Javascript (Usage) | |
---|---|
$(function () { // Get value var returnsValue; // Type: bool returnsValue = $(".selector").wijgrid("option", "allowPaging"); // Set value var newValue; // Type: bool $(".selector").wijgrid("option", "allowPaging", newValue); }); |
Javascript (Specification) | |
---|---|
|
// Grid displays paging buttons when allowPaging is true. The pageSize here sets 5 rows to a page. $("#element").wijgrid({ allowPaging: false, pageSize: 5 });