Infinite pagination
See original GitHub issueIn the https://www.npmjs.com/package/react-table#server-side-data initially we have pages={this.state.pages} // should default to -1 (which means we don't know how many pages we have)
and then set it from server response
It is not possible to keep it -1 , I have a use case (Similar to infinite scrolling but no scrolling just infinite paginating) that I want to keep next and previous button , and disable next button when the server returns empty response
Issue Analytics
- State:
- Created 4 years ago
- Comments:6
Top Results From Across the Web
Pagination vs. Infinite Scroll: What's the Difference? - seoClarity
Infinite scrolling allows you to continuously scroll through content in its entirety from just one single webpage. Once the scroll bar reaches ...
Read more >Infinite Scrolling vs. Pagination | by Nick Babich | UX Planet
Infinite scrolling is a technique that allows users to scroll through a massive chunk of content with no finishing-line in sight. This technique...
Read more >Pagination vs. Infinite Scroll: Which Is Better for Your Content?
Pagination works best on websites where users are looking for specific pieces of content. Infinite scroll is better suited for the exploration ...
Read more >infinite_scroll_pagination | Flutter Package - Pub.dev
Infinite Scroll Pagination #. Unopinionated, extensible and highly customizable package to help you lazily load and display small chunks of items as the...
Read more >Infinite Scrolling, Pagination Or “Load More” Buttons ...
With infinite scrolling, sometimes referred to endless scrolling, the user largely experiences the page as if all products are loaded at once ( ......
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Yes.
Tanner Linsley On Sep 15, 2019, 11:07 PM -0600, sm2017 notifications@github.com, wrote:
@tannerlinsley Do you have plan to implement
lastPage
props ?