Multiple cells per row in CellTable (like a Cell Grid)

2012-08-21 Thread Shaun Tarves
Is there any way to have multiple cells per column in a CellTable? What I would really like is a grid of cells, but it only seems to be one per row. The closest I can come is a CellList whose cells are display: inline-block. Any ideas? -- You received this message because you are subscribed

Re: Multiple cells per row in CellTable (like a Cell Grid)

2012-08-21 Thread Andrea Boscolo
It's up to you to create a grid of cells. Try to use a CompositeCell http://google-web-toolkit.googlecode.com/svn/javadoc/2.5/com/google/gwt/cell/client/CompositeCell.html On Tuesday, August 21, 2012 3:29:20 PM UTC+2, Shaun Tarves wrote: Is there any way to have multiple cells per column in a

Re: Multiple cells per row in CellTable (like a Cell Grid)

2012-08-21 Thread Shaun Tarves
My understanding is that CompositeCell is still not going to allow me to use multiple Cell data objects per row. An example is a data provider that is a ListPeople and I want my grid to display my collection of People in a 4x4 grid. Is there a way to do that? On Tue, Aug 21, 2012 at 1:05 PM,

Re: Multiple cells per row in CellTable (like a Cell Grid)

2012-08-21 Thread Jens
An example is a data provider that is a ListPeople and I want my grid to display my collection of People in a 4x4 grid. Is there a way to do that? You could create 4 columns of type Person and invent a new class that represents your table rows, lets say PersonGroup. Your table would then