I am stuck with a gwt cell pager that I want to bind to a cell table. I configure it as follows:
List <ForumMessage> AllMessages=populated from an rpc; CellTable cellTable = new CellTable <ForumMessage>(); simplePager = new SimplePager(); cellTable.addColumn(ColumnM); cellTable.setRowData(0,AllMessages); simplePager.setDisplay(cellTable); simplePager.setPageSize(3);
Correctly Defined ColumnM
But when the cell table is displayed, the first three rows are displayed correctly, but when I click next, the rows are not displayed, and the cell table is as if they were loaded. Now from this page, if I click back, again the page will look as if it was loaded.
Now another problem is that I can continuously click further, and the number of pages continues to be added, even if there are only 8 lines
Noor
source share