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.)