Hi there,
Let’s say I have 14 documents to display. I use paginate=`1` and &summarize=`7` so that I display them on 2 pages.
Now, I want to sort them by id. Look what it outputs :
Page 1 : (numbers are id)
91, 84, 83, 82, 80, 78, 77
Page 2 :
97, 94, 90, 89, 88, 87, 86
In fact on each page, it sorts well but if you look globally, sorting is not good. I would have liked to get
Page 1 :
97, 94, 91, 90, 89, 88, 87
Page 2 :
86, 84, 83, 82, 80, 78, 77
It looks like paginate is done before sorting. Is there a way to sort before paginating so that I get what I need ?
Thank you for your help
Perrine