On Wednesday, November 21, 2012 6:15:09 PM UTC+1, Thad wrote: > > I've got a button panel layout for which I'm trying to use a FlowPanel: > > <g:FlowPanel> > <g:PushButton> > <g:PushButton> > <g:ToggleButton> > <g:PushButton> > > The problem is that even if I double down by giving the FlowPanel a style > that includes "block: inline-block", the ToggleButton breaks the flow and > the next PushButton ends up below the ToggleButton, not in the line with > the other buttons. Ditto if I use and HTMLPanel with a <span> and block: > inline-block. > > I can fix the alignment by using HorizontalPanel but I understand that > cell panels are "a bad thing." But is there any solution short of using a > LayoutPanel with all it's baggage of layers and sizes? (A real pain, > especially with Designer broken.) >
The problem is not the container, but the button: set "display: inline-block" on the ToggleButton itself (hoping it'll work, otherwise maybe wrap it in a <div style="display: inline-block">) -- 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/-/foBYclZ8lNQJ. 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.
