Now I'm stuck on the issue of pagination widgets in GWT.
I use the Cell table to display a list of instances of the UI Binder class (Ex: LocationView). http://gwt.google.com/samples/Showcase/Showcase.html#!CwCellTable This is a CellTable showcase.
Now I want to add my widget (UI binding class) to each cell of the table. It will look like this 
In this cell table, each cell is a widget (LocationView - interface binding class):

So, how can I create this table using a cell table (I do not use a grid because it does not support pagination)
or If I cannot use the Cell table to create this table, then what can I use for it that supports pagnigation (if the number of LocationView (the icon you see) exceeds 6, it will go to page 2).
Thanks for the help!
source share