Re: UI Layout and Alignments

2009-11-13 Thread Paul Robinson
HorizontalPanel and VerticalPanel are also table-based widgets, but tend to produce more tables than FlexTable because they lend themselves to being nested. FlowPanel (a div), HTMLPanel or the new GWT 2 UIBinder are the preferred ways of doing things, although you do need more html/css

Re: UI Layout and Alignments

2009-11-13 Thread Thomas Broyer
On Nov 13, 11:07 am, Paul Robinson ukcue...@gmail.com wrote: HorizontalPanel and VerticalPanel are also table-based widgets, but tend to produce more tables than FlexTable because they lend themselves to being nested. FlowPanel (a div), HTMLPanel or the new GWT 2 UIBinder are the preferred

RE: UI Layout and Alignments

2009-11-12 Thread Hayes, Kyle
I recommend you take a look at HorizontalPanel and VerticalPanel as well for many of the layouts. GWT UI layout stuff is a lot like Java Swing. FlexTable creates tables and having too many tables on a page can be very heavy for the client. -K From: