I have following structure in my html page:
<ul data-ng-controller="ListCtrl">
<li data-ng-repeat="record in records">
<div>.............</div>
</li>
</ul>
I have total 15 records which are displaying on the same page.
I need to divide these pages like 1-5, 6-10, 11-15, so if i added limitTo: 5 then it showing only first 5 records. I need to see the rest of records also like 6-10 & 11-15 on the next page.
Is there any kind of filter in angularJS or any other way to do it ?