Changes between Version 1 and Version 3 of Ticket #26451
- Timestamp:
- Apr 3, 2016, 7:15:51 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #26451
- Property Triage Stage Unreviewed → Accepted
-
Ticket #26451 – Description
v1 v3 3 3 depending on the use-case there are two ways to improve the situation 4 4 * just work without count, if you never show the page-count. Then the paginator can just return empty results if the end is near. 5 * use rough estimations for the page-count, perhaps with some security margin. For example PostgreSQL supports this by using {{ EXPLAIN}}, based on the table statistics.5 * use rough estimations for the page-count, perhaps with some security margin. For example PostgreSQL supports this by using {{{EXPLAIN}}}, based on the table statistics. 6 6 7 7 I want to 8 8 * extend the paginator to support both (infinite and estimate) 9 * provide an option for {{ ModelAdmin}} that let's you use the estimation-paginator.9 * provide an option for {{{ModelAdmin}}} that let's you use the estimation-paginator. 10 10 * or perhaps even support the infinite-paginator, this would also include interface changes to the pagination.