Custom list display

Hi

I am trying to display a simple table. No Editing, no selecting just a view. A specialty with this view is that some rows
have an extra information. Simple task with HTML but i am stuck porting this to vaadin.
I attached a picture to this post. If I use the Tableobject i cannot attach the extraline, or i dont know how.
If i just use a Vertical or CssLayout then things arent aligned and below each other.
Who knows it better?

Cheers
Stefan

I think that GridLayout is a good choice for you. With it you can align columns and one component can span more than one cell. For more information, see
Book of Vaadin
.

Yup! Creating rows and columns with Gridlayout is easy. On the other hand skinning the grid is laborious.
I think customoize skin and creating new UI Elements is biggest disadvantage of vaadin.

It would be nice to be able to set style names for cells in GridLayout. There is at least one
ticket
about it.

Matti’s FastGrid in the
FastLayouts
add-on copies style names from components to the containing cells.

FastLayouts… i will have a look at it. Sounds good, thx.