-
Bug
-
Resolution: Won't Fix
-
Normal
-
None
-
6.0.0
-
IE 6, IE 7
In IE 6 and 7, if there is not enough space, the content that was put in a vlayout overlaps the tabpanel's bottom padding, its borders and the area below. If a vlayout is removed, only bottom padding is overlaped (which, by the way, happens in all major browsers. Looks like if the tabbox was cut). Here is a sample to reproduce this issue:
<tabbox height="150px" width="200px" style="margin:10px"> <tabs> <tab label="Tab 1"></tab> </tabs> <tabpanels hflex="1" vflex="1" style="background-color: yellow;"> <tabpanel hflex="1" vflex="1" style="overflow: auto; border-color: red;"> <vlayout> <div width="100%" height="1000px" style="background-color: green"> </div> </vlayout> </tabpanel> </tabpanels> </tabbox>