josecebe / twbs-pagination

jQuery pagination plugin (bootstrap powered)
http://josecebe.github.io/twbs-pagination/
Other
1.1k stars 401 forks source link

how to set totalPages #61

Closed wenvid closed 8 years ago

wenvid commented 8 years ago

how to set the new totalPages after the twbsPagination inited?

pavelthq commented 8 years ago
var pagination = jQuery('.pagination').data('twbsPagination');
pagination.options.totalPages = 10;
// now we need to re-render, this can be done with change page to other. or by manually calling render/setupEvents
var pageToShow = 3; // put your active page number for example
pagination.show(pageToShow);