Wijmo UI for the Web
pagerSettings Option

Type: wijmo.grid.IPagerSettings

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

Syntax
Javascript (Usage) 
$(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);
        
});
Javascript (Specification) 
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.
Browser Compatibility
7
5
5

See Also

Reference

options type
wijgrid jQuery Widget

 

 


© 2013 All Rights Reserved.

Send comments on this topic.