|
|
|
|
|
by spockz
1489 days ago
|
|
If the ordering changed because the data changed then just show the new situation at that page. If the results’ order is important there are several things you can do (at least): 1. You could save the order under a token and iterate respective to that saved order, only showing the data for the ids that were originally included.
2. Instead of continuing from a page count show the next amount. Any mutation before that point will be invisible without having to store the original result list (only ids). |
|