Important Notice - Forums is archived
To simplify things and help our users to be more productive, we have archived the current forum and focus our efforts on helping developers on Stack Overflow. You can post new questions on Stack Overflow or join our Discord channel.

Vaadin lets you build secure, UX-first PWAs entirely in Java.
Free ebook & tutorial.
Paging table
Hello everyone!
Is there some relatively easy way to create paging table/container that loads new page from the database when user scrolls table scrollbar to the bottom? New rows are added to the table after the "old" ones (so that user can easily scroll back). For example Spotify uses this kind of paging mechanism.
That is pretty much the standard behaviour of a Table whenever a lazy loading container is used. The Vaadin-provided JPAContainer, or the LazyQueryContainer, or HBNContainer would all behave as you appear to request.