ComponentOne GridView for ASP.NET WebForms
jQuery.wijmo.c1gridview Namespace / options type / pagerSettings Option
In This Topic
    pagerSettings Option
    In This Topic
    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
    // Get value
    var value; // Type:  jQuery.wijmo.c1gridview.options.pagerSettings
    value = $(".selector").c1gridview("option", "pagerSettings");
    
    // Set value
    var newValue; // Type:  jQuery.wijmo.c1gridview.options.pagerSettings
    $(".selector").c1gridview("option", "pagerSettings", newValue);
    var pagerSettings : pagerSettings;
    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
    8
    5
    5
    See Also