BoxPane does not automatically size its content to fill the available space. For that, you'll either need to set the "fill" style to true on the BoxPane or use a container that does size its content to fill. Maybe TablePane would be a better fit for your use case?
On Jun 17, 2010, at 4:49 PM, aappddeevv wrote: > Wrote the pivotpad application to test bxml and layout issues that I have > been having. > > I can get most items to appear as I would expect, however, the one > configuration that does not show up is placing a split pane inside a box pane. > > So placing: > > <SplitPane xmlns:wtkx="http://pivot.apache.org/wtkx" > xmlns="org.apache.pivot.wtk"> > <left> > <Label text="Left"/> > </left> > <right> > <Label text="Right"/> > </right> > </SplitPane> > > > Inside a box pane > > <BoxPane …> > > </BoxPane> > > programmatically or in bxml does not show the splitpane at all. > > What am I doing wrong? >
