Wijmo UI for the Web
pageButtonCount Option
wijmo.pager.wijpager Namespace > options type : 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
$(function () {
    
    // Get value
    var returnsValue; // Type:  number
    returnsValue = $(".selector").wijpager("option", "pageButtonCount");
    
    // Set value
    var newValue; // Type:  number
    $(".selector").wijpager("option", "pageButtonCount", newValue);
        
});
var pageButtonCount : number;
Example
// Here's the general way you'll set the option:
$("#element").wijpager({
   pageButtonCount: 15
});
See Also

Reference

options type
wijpager jQuery Widget