I\'m using GWT 2.1\'s CellBrowser with a custom TreeViewModel
. The TreeViewModel in turn uses an AsyncDataProvider
to fetch data dynamically. This all
I had the same problem and this worked for me:
List dataToTable = ....
int firstPosition = this.pager.getDisplay().getVisibleRange().getStart();
this.dataProvider.updateRowData(firstPosition, dataToTable);
int rowCount = this.pager.getPageStart() + dataToTable.size();
this.dataProvider.updateRowCount(rowCount, exactCount);
Where the "pager" is a SimplePager to control the table pagination.
Hope this helps!