Re: Navigation/Paging

2018-03-13 Thread Shawn Heisey
On 3/13/2018 10:26 AM, Sebastian Riemer wrote: > However, now we want to introduce a similar navigation in our detail views, > where only ever one document is displayed. Again, the navigation bar looks > like this: > > << First < Prev 1 - 15 of 62181 Next > >

Re: Navigation/Paging

2018-03-13 Thread Rick Leir
Sebastien Can you not just handle this in your Javascript? Your request will always get 15 rows, start=0 then start=15 and so on. In the details view you only show one of the documents of course, and when the user is viewing the last of 15 and clicks next, you will request the next 15. When vie