Can some one spot error with this pagination. Date in the table is not updating with change of page links
<uib-pagination
ng-model="currentPage"
total-items="rows.length"
max-size="maxSize"
boundary-links="true">
</uib-pagination>
ng-modelfor your pagination control than for the table.ng-model="currentPage", but your table is usingng-model="filteredRows", so the pagination control will have no effect on that table.