Re: GWT 2.2 Celltable Paging

2011-03-24 Thread Dovakhin
Hi, thank you very much. That solved the problem. On 23 Mrz., 22:22, Alexandre Ardhuin alexandre.ardh...@gmail.com wrote: Hi, I think you should use : cellTable.setRowCount(result.size()); cellTable.setRowData(0, result); instead of : cellTable.setRowData(result); Javadoc of

Re: GWT 2.2 Celltable Paging

2011-03-23 Thread Alexandre Ardhuin
Hi, I think you should use : cellTable.setRowCount(result.size()); cellTable.setRowData(0, result); instead of : cellTable.setRowData(result); Javadoc of com.google.gwt.user.cellview.client.AbstractHasData.setRowData(List? extends T) tells : Set the complete list of values to display on one

GWT 2.2 Celltable Paging

2011-03-22 Thread Dovakhin
Hi, I have the following problem. I have a celltable with 2 columns. These columns contain Filenames and their size. Due to the fact that i have many files that i want to display I want to use Paging. In my last project i used gwt 2.1 and the paging worked there. The simplePager in GWT 2.2 does