ComponentOne GridView for ASP.NET WebForms
jQuery.wijmo.c1gridview Namespace / options type / allowPaging Option
In This Topic
    allowPaging Option
    In This Topic
    Determines whether the grid should display paging buttons. The number of rows on a page is determined by the pageSize option.
    Syntax
    // Get value
    var value; // Type:  boolean
    value = $(".selector").c1gridview("option", "allowPaging");
    
    // Set value
    var newValue; // Type:  boolean
    $(".selector").c1gridview("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: false, pageSize: 5 });
    Browser Compatibility
    8
    5
    5
    See Also