mattiash / angular-tablesort

Sort angularjs tables easily
MIT License
184 stars 66 forks source link

Pagination not displaying #91

Open AnderSco01 opened 7 years ago

AnderSco01 commented 7 years ago

Hello,

The numbered pagination boxes with "Previous" and "Next" buttons do not appear with an overflow of table rows, yet the dropdown does. Does a certain attribute need to be inserted to make it appear? Thanks.

eaidland commented 7 years ago

Having the same issue :-1: AngularJS v1.6.1 ui-bootstrap-tpls-2.5.0.min.js

Update:

Found the problem:

Current: pagerString += "<uib-pagination style='vertical-align:top; margin-top:0;' ng-if='ITEMS_PER_PAGE < TOTAL_COUNT' ng-model='CURRENT_PAGE_NUMBER' total-items='FILTERED_COUNT' items-per-page='ITEMS_PER_PAGE' max-size='5' force-ellipses='true'></uib-pagination>";

Changed: pagerString += "<ul uib-pagination style='vertical-align:top; margin-top:0;' ng-if='ITEMS_PER_PAGE < TOTAL_COUNT' ng-model='CURRENT_PAGE_NUMBER' total-items='FILTERED_COUNT' items-per-page='ITEMS_PER_PAGE' max-size='5' force-ellipses='true'></ul>";