Hello all,
I would like to embed a Dojo border container inside the center facet of an ExtLib Application Layout control and have it automatically take up 100% of available height. I basically want to use it for standard Notes-type Action Bar/View/Preview type of thing. But, If I specify height:100%, the control disappears. I suspect this is due to the css involved - but I have been unable to find much documentation on the control. My code (snippet) looks like this:
<xp:panel xp:key="facetMiddle">
<xe:djBorderContainer id="djBorderContainer1"
style="width:100%; height:850px" liveSplitters="true"
persist="true">
<xe:djBorderPane id="djBorderPane0" region="top">
Action Bar
</xe:djBorderPane>
<xe:djBorderPane id="djBorderPane1" region="bottom"
splitter="true">
Preview
</xe:djBorderPane>
<xe:djBorderPane id="djBorderPane2"
region="center">
View
</xe:djBorderPane>
</xe:djBorderContainer>
</xp:panel>
If I select a fixed height as in the example above, it works flawlessly. Does anybody know how to fix this?
Thanks,
Alex Rasmussen