Wijmo UI for the Web
pageButtonCount Option

Default value: 10

An option that indicates the number of page buttons to display in the pager. You can customize how many page buttons are available for your users to use to page through content. You can use this option in conjunction with the pageCount to customize the pager display.

Syntax
Javascript (Usage) 
$(function () {
    
    // Get value
    var returnsValue; // Type:  number
    returnsValue = $(".selector").wijpager("option", "pageButtonCount");
    
    // Set value
    var newValue; // Type:  number
    $(".selector").wijpager("option", "pageButtonCount", newValue);
        
});
Javascript (Specification) 
var pageButtonCount : number;
Example
// Here's the general way you'll set the option:
$("#element").wijpager({
   pageButtonCount: 15
});
Browser Compatibility
7
5
5

See Also

Reference

options type
wijpager jQuery Widget

 

 


© 2013 All Rights Reserved.

Send comments on this topic.