jQuery.wijmo.wijgrid Namespace > options type : allowPaging Field |
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) | |
---|---|
var value; // Type: bool value = jQuery.wijmo.wijgrid.options.allowPaging; |
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 });