What Cell,Table can I use to create a grid of only images in every cell, in GWT?

67 Views Asked by At

I need to create a GWT application that handle the buying of films. So I have to show in a grid (not in a list, I don't like the view) these cell containing image and info about the film like this:( http://static.ipaditalia.com/wp-content/uploads/2012/11/mzl.sckskoqz.480x480-75.jpg ). I think that I need of a grid showing I think, to obtain something like but I wouldn't know to start. thanks for help!

1

There are 1 best solutions below

5
On BEST ANSWER

You can use a simple FlowPanel as a container, and add each image with a float set to "left".

Alternatively, you can use a flex-box model with flex-flow: row wrap on a container.

You don't need any widgets for this. This is simple CSS, and it will give you the best performance and the smallest code size.