I am creating a GWT app that will use a table to display some data. I am not sure which cell widget/table to use to populate data vertically in column. Basically I want to populate data going down instead of going across.
Simple example:
Category A | Category B
-------------|-------------
item 1a | item 1b
item 2a | item 2b
...
Based of off the showcase of feaures: http://gwt.googleusercontent.com/samples/Showcase/Showcase.html#!CwCellTable
My best option might be to just use a grid, or to create a bunch of separate cell tables for each category. Anyone have any ideas?
These look like 2 separate CellList's to me. The CellTable and DataGrid objects are specifically bound to displaying object data in rows.