AW: Navigation/Paging

2018-03-14 Thread Sebastian Riemer
, 14. März 2018 00:19 An: solr-user@lucene.apache.org Betreff: Re: Navigation/Paging 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

AW: Navigation/Paging

2018-03-14 Thread Sebastian Riemer
Hi Rick, thanks for pointing this out - that's the solution I was thinking about too "... -> I guess this we could handle by >simply checking and sending a second query where the param "start" >would be adjusted accordingly ..." Just checking if there are other options, Thanks again! Sebastia

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

Navigation/Paging

2018-03-13 Thread Sebastian Riemer
Hi, In our web app, when displaying result lists from solr, we've successfully introduced paging via the params 'start' and 'rows' and it's working quite well. Our navigation in list screens look like this: << First < Prev 1 - 15 of 62181 Next >