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.