Since I couldn't get SplitLayoutPanel to work as I wanted, I used your suggestion. Works like champ. Thanks!
On Wed, Feb 19, 2014 at 6:03 PM, Jens <[email protected]> wrote: > Use setWidgetTopBottom() for the upper layers: > > > LayoutPanel layout = new LayoutPanel(); > layout.add(leftTop); > layout.setWidgetLeftWidth(leftTop, 0, Style.Unit.PCT, 50, > Style.Unit.PCT); > layout.setWidgetTopBottom(leftTop, 0, > Style.Unit.PCT<http://style.unit.pt/>, > 30, Style.Unit.PT); > > layout.add(rightTop); > layout.setWidgetRightWidth(rightTop, 0, Style.Unit.PCT, 50, > Style.Unit.PCT); > layout.setWidgetTopBottom(rightTop, 0, > Style.Unit.PCT<http://style.unit.pt/>, > 30, Style.Unit.PT); > > layout.add(leftBottom); > layout.setWidgetLeftWidth(leftBottom, 0, Style.Unit.PCT, 50, > Style.Unit.PCT); > layout.setWidgetBottomHeight(leftBottom, 0, > Style.Unit.PCT<http://style.unit.pt/>, > 30, Style.Unit.P <http://style.unit.pt/>T); > > layout.add(rightBottom); > layout.setWidgetRightWidth(rightBottom, 0, Style.Unit.PCT, 50, > Style.Unit.PCT); > layout.setWidgetBottomHeight(rightBottom, 0, > Style.Unit.PCT<http://style.unit.pt/>, > 30, Style.Unit.PT <http://style.unit.pt/>); > > > -- J. > > > -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-web-toolkit. For more options, visit https://groups.google.com/groups/opt_out.
