Re: GWT CELLTABLE :How to avoid RPC call in AsycDataProvider when I click on prev button.

2011-08-17 Thread BST
You have to append the data you get (the 100 rows )to a list or a data store of your choice. I can't think of another way. It would be easier if you put that list or your custom datastore inside the AsyncDataProvider. Basically the idea is caching the rows you are getting from the server. --

GWT CELLTABLE :How to avoid RPC call in AsycDataProvider when I click on prev button.

2011-08-16 Thread vaibhav bhalke
Hi, GWT CELLTABLE :How to avoid RPC call in AsycDataProvider when I click on prev button. I am using AsyncDataProvider to fetch data from server to celltable page. Each time when i click next button i am getting next 100 records from the server. And it is displaying the data fine. No issues