I have a table with 100 rows of data which is displaying 10 rows at a time having pagination also. My question is, i want to show the another 10 rows without clicking on the pagination number. Like that it should be repeat continuously once it done again it come to first just same like the railway indicator which show the new trains / upcoming trains vice versa.
Guys if know the answer please help me, but don't mark as duplicate / irrelavant ...
Thanks in advance
<table class="table table-striped responsive-utilities jambo_table bulk_action">
<thead>
<tr class="headings">
<th class="column-title">S No</th>
<th class="column-title">Connection Number</th>
<th class="column-title">Received By</th>
<th class="column-title">Date</th>
</tr>
</thead>
<tbody >
<tr class="even pointer" dir-paginate="list in oporderlist| filter:search|orderBy:sortKey:reverse|itemsPerPage:10">
<td class=" " >{{$index+1}}</td>
<td class=" " >{{list.connectionno}}</td>
<td class=" " >{{list.receivedBy}}</td>
<td class=" " >{{list.createdAt|date:"dd/MM/yyyy"}}</td>
</tr>
</tbody>
</table>
<dir-pagination-controls
max-size="3"
direction-links="true"
boundary-links="true" style="float:right" >
</dir-pagination-controls>