Examples and links from How to do paging in AngularJS? all show pagination system where the filtering/ordering only apply to current page.
For instance, sorting by id on the 1st page of this fiddle will switch :
- between:
1, 10, 11, 12, 13; - and this :
13, 12, 11, 10, 1.
While someone might expects to get :
1, 2, 3, 4, 5(as those values are present in following pages).
Question
How would someone filter/order then paginate instead of paginate then filter a list ?
1, 10, 11, 12, 13