Wijmo UI for the Web
allowPaging Option

Default value: false

Determines whether the grid should display paging buttons. The number of rows on a page is determined by the pageSize option.

Syntax
Javascript (Usage) 
$(function () {
    
    // Get value
    var returnsValue; // Type:  bool
    returnsValue = $(".selector").wijgrid("option", "allowPaging");
    
    // Set value
    var newValue; // Type:  bool
    $(".selector").wijgrid("option", "allowPaging", newValue);
        
});
Javascript (Specification) 
var allowPaging : bool;
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
7
5
5

See Also

Reference

options type
wijgrid jQuery Widget

 

 


© 2013 All Rights Reserved.

Send comments on this topic.