Pagination documentation

Page

Results per page

Initially we make a form with a GET request and add ID

HTML example


<form method="get" id="employees-table-form">
<button class="button button--small button--outlined icon-Chevron-Left-Small"
id="previous-button"></button>
Page 1
<button class="button button--small button--outlined icon-Chevron-Right-Small"
id="next-button"></button>
<select class="select margin-left-16" name="records-on-page">
    <option value="20">20</option>
    <option value="50">50</option>
    <option value="100">100</option>
</select>
<button class="action-row-button button button--primary button--small">
Show</button>
</form>