Re: Paging a simple CellTable freezes

2010-11-17 Thread Stefan Meisner Larsen
Thanks a lot, John! 2010/11/16 John LaBanca > Put your list in a ListDataProvider and set the cellTable as the display: > ListDataProvider dataProvider = new ListDataProvider( > CONTACTS); > dataProvider.addDataDisplay(cellTable); > > When you change the visible range of a CellTable, it clears i

Re: Paging a simple CellTable freezes

2010-11-16 Thread Nick Newman
Thank you so much! I knew it had to be something simple. Nick On Tue, Nov 16, 2010 at 9:58 AM, John LaBanca wrote: > Put your list in a ListDataProvider and set the cellTable as the display: > ListDataProvider dataProvider = new ListDataProvider( > CONTACTS); > dataProvider.addDataDisplay(cell

Re: Paging a simple CellTable freezes

2010-11-16 Thread John LaBanca
Put your list in a ListDataProvider and set the cellTable as the display: ListDataProvider dataProvider = new ListDataProvider( CONTACTS); dataProvider.addDataDisplay(cellTable); When you change the visible range of a CellTable, it clears its current data and fires a RangeChangeEvent. Something (

Re: Paging a simple CellTable freezes

2010-11-16 Thread stefannMeisner
Hi I Am experiencing the same problem. I have tried to setup a simple MVP application. When I get the "bar with the moving bands" I press a link that goes to the same page. The updated page shows the CellTable with the correct lines visible. Any help appreciated. A working example with CellTable

Paging a simple CellTable freezes

2010-11-12 Thread Nick Newman
Hi, I'm trying the CellTable from GWT 2.1 and I must be doing something silly because I cannot get it to page. When I display the table I see the first page just fine, but when I press the page-forward button I get a "busy" indication (a bar with moving bands) and that stays there forever. Could