• Hey Guest, don't forget to VOTE on each RFC topic. Your voting determine Chevereto development! No votes, no development.
  • Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space

Better navigation/pagination with ability to jump to specific pages

lovedigit

👽 Chevereto Freak
Use this template to submit your feature request. Include links, pictures, or screenshots if needed. Please post only one request per thread to help us better track and discuss each suggestion. If you have multiple requests, feel free to create separate threads for each. Remove this paragraph after completing the template.

Describe your feature request
Currently, going to the specific page in the list is a pain. We need to click on next until we reach to that page. In some cases when there are lots of images in an album, and we know that we have to go to page number X, there is no way to direct navigate/jump to that page.

I am proposing, we should have a pagination system where we can go to specific page in the list so that navigation is easier. Right now there is no way to do this. Earlier,

Screenshot From 2026-02-23 10-17-49.png

Where did you see this?
On my platforms where there could be a long list of pages.

Community interest
Share any links showing traction or feedback about your suggestion. This helps gauge broader interest.
 
FYI Chevereto doesn't paginate results, it uses cursor pagination which have the advantage of not needing to compute the length of the complete listing, it is just aware of the next/prev page. That kind of pagination is a must for a website which offers several dynamic listings.

You can learn about it in this ancient website: https://stackoverflow.com/questions/55744926/offset-pagination-vs-cursor-pagination

The concept you should be worry about is "jump N files", which we could either put directly jump x files or a virtualized jump page as jump x page = jump x files-per-page x page, where the fetch cost increases depending on your peek size.
 
Back
Top