You can still use VerticalPanel but you have to tweak it a bit so that Flowpanel can layout your widgets from left to right:
See (CSS class names represent the GWT widget): - http://jsfiddle.net/TBWTe/ (should work even in IE6) - http://jsfiddle.net/88v6K/ (should work in IE8 and above) In both cases if you remove the CSS style in .verticalpanel you will see what you have now (VerticalPanels are laid out vertical inside FlowPanel). If you want to avoid HTML tables then you could build your widget based on a FlowPanel as root and SimplePanels as "cells". But you still need some CSS to achieve what you want. -- J. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/21Z0dmJ6FHgJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
