#1963 closed defect (invalid)
LayoutContainer cuts Bottom pane off in IE6
Reported by: | ornus | Owned by: | bill |
---|---|---|---|
Priority: | high | Milestone: | |
Component: | Widgets | Version: | 0.4 |
Keywords: | layout | Cc: | [email protected]… |
Blocked By: | Blocking: |
Description
I'll attach a test case to show the problem. it seems that if toolbar is present and there's split container and layout container is in one of the content pane containers there's a problem. as soon as I click on the split container resizer everything gets fixed. this is a problem only in IE6. everything is fine in IE7 and Mozilla.
I might be doing layout incorrectly, so any tips on how to achieve similar layout without things breaking are welcome.
Attachments (1)
Change History (3)
Changed 14 years ago by
Attachment: | test_LayoutComplex.html added |
---|
comment:1 Changed 14 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
I see a common error in your test. The second child of the LayoutContainer? is a ContentPane? containing a SplitContainer?, but really it should just be the split container. Get rid of the "middle-man":
<div dojoType="SplitContainer" orientation="horizontal" sizerWidth="5" activeSizing="0" layoutAlign="client">
Similarly, the second child of the SplitContainer? is a ContentPane? that contains a LayoutContainer?, but really it should just be a LayoutContainer?.
<div dojoType="LayoutContainer" layoutChildPriority='none' sizeShare=50 style="border: 2px solid black;">
test case. place in "testswidget"