Wijmo UI for the Web
allowPaging Option
wijmo.grid.wijgrid Namespace > options type : allowPaging Option

Determines whether the grid displays paging buttons that allow the user to navigate between pages of data. Set the number of rows of data on each page using the pageSize option.

Default value: false

Type: Boolean

 

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  boolean
    returnsValue = $(".selector").wijgrid("option", "allowPaging");
    
    // Set value
    var newValue; // Type:  boolean
    $(".selector").wijgrid("option", "allowPaging", newValue);
        
});
var allowPaging : boolean;
Example
// Grid displays paging buttons when allowPaging is true. The pageSize here sets 5 rows to a page.
$("#element").wijgrid({ allowPaging: true, pageSize: 5 });
Remarks

Set this option to true to enable the pageSizepageIndex, and pagerSettings options.

The Paging sample demonstrates all of the page options.

See Also

Reference

options type
pageIndex Option
pagerSettings Option
pageSize Option
scrollMode Option
wijgrid jQuery Widget