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.
FilterTable and lazy loading from REST
Hi, I have simple architecture Browser->UI->REST Server. I'm using FilterTable and IndexedContainer. I am fetching huge data from REST server so I definitely need some paging. REST server accepts ?page parameters. I gave up to implement filtering, however at least paging could be good. I have two choices:
1) To implement my own paging container. Is something available which could help?
2) Implement my own paging controls (I mean user interface) and display it above the table. I will always supply the table with just one page (IndexedContainer).
Are there some other solutions?
Have you looked at the LazyQueryCOntainer add-on? It's the recommended solution to that kind of needs, although I can't say how well it fits with your REST data source and paging.