Wijmo UI for the Web
allowPaging Field
wijmo.grid Namespace > IWijgridOptions Interface : allowPaging Field

Determines whether the grid should display paging buttons. The number of rows on a page is determined by the pageSize option.

Syntax
var instance; // Type: wijmo.grid.IWijgridOptions;
var value; // Type: boolean
value = instance.allowPaging;
var allowPaging : boolean;
Example
// Grid displays paging buttons when allowPaging is true. The pageSize here sets 5 rows to a page.
$("#element").wijgrid({ allowPaging: false, pageSize: 5 });
See Also

Reference

IWijgridOptions Interface