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

Determines the pager settings for the grid including the mode (page buttons, or next and previous buttons), the number of page buttons, and the position where the buttons appear.

Default:

{mode: "numeric", pageButtonCount: 10, position: "bottom"}

Type: wijmo.grid.IPagerSettings object

Syntax
$(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);
        
});
var pagerSettings : IPagerSettings;
Example
// Display the pager at the top of the wijgrid.
$("#element").wijgrid({ pagerSettings: { position: "top" } });
Remarks

See the wijpager documentation for more information on pager settings.

The Paging sample demonstrates all of the page options.

See Also

Reference

options type
allowPaging Option
pageIndex Option
pageSize Option
wijgrid jQuery Widget