I had a similar requirement. What I am doing now is getting 300 records at a time, and showing on the cell table. When the user clicks on next and if it is the last page I get another set of records using a RemoteService and update the Cell Table.
Since I required a different kind of pager, I have an implementation of Abstract Pager. What you can do is extend the SimplePager if u r using it. Override the nextPage method, and check whether u r on the last page or not. If you are on the last page then get the data using an RPC call to a service. The service should return you a list of data from a particular index. When you get the list from the RPC just append it to the ListDataProvider of the table. https://groups.google.com/d/topic/google-web-toolkit/sCJhFYWmmVI/discussion -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/IXRaBhhAQdgJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
