Currently, I am utilizing ui-bootstrap
version v0.14.3
along with the resource from
The documentation of angular-data-grid
states that
rotate
(Defaults:true
) : It determines whether to center the current page within the visible ones.
Consequently, I have included rotate = "false"
in my code
<div grid-pagination boundary-links="true"
rotate="false"
ng-if="paginationOptions.totalItems > paginationOptions.itemsPerPage"
total-items="paginationOptions.totalItems"
ng-model="paginationOptions.currentPage"
ng-change="reloadGrid()"
class="pagination-sm"
items-per-page="paginationOptions.itemsPerPage">
</div>
Despite this implementation, it is not functioning as expected for me.