Pagination
Splits large data sets across numbered pages with previous and next navigation.
Basic
500 items at 25 per page gives 20 total pages. Ellipsis appears automatically once the window of 5 consecutive pages does not cover both ends.
<diwa-pagination total-items-count="500" items-per-page="25" active-page="1" show-last-page theme="dark"></diwa-pagination>Short list — no ellipsis
When the total page count is 7 or fewer, all pages are shown with no ellipsis.
<diwa-pagination total-items-count="7" items-per-page="1" active-page="4" show-last-page theme="dark"></diwa-pagination>Hide last-page shortcut
Set show-last-page="false" to remove the direct link to the final page. Useful when the total count is unknown or very large.
<diwa-pagination total-items-count="1000" items-per-page="10" active-page="5" theme="dark"></diwa-pagination>