Version:SNAPSHOT_v8.3d_2012-07-18/LGPL Development Only (built 2012-07-18)
The title of the SectionStackSection overlapping with the controls in the SectionStackSection.
Browsers: IE9, FF13
Please see the attached screen-shot.
Code:
final SectionStack sectionStack = new SectionStack();
sectionStack.setWidth(300);
sectionStack.setHeight(350);
Img icon = new Img("/TextEditIcon1.jpg");
icon.setSize("30px", "30px");
SectionStackSection section1 = new SectionStackSection("Teeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeest");
section1.setID("blueSection");
section1.setExpanded(true);
section1.setControls(icon);
sectionStack.addSection(section1);
SectionStackSection section2 = new SectionStackSection("Section 2");
section2.setExpanded(true);
section2.setCanCollapse(false);
sectionStack.addSection(section2);
sectionStack.draw();
Browsers: IE9, FF13
Please see the attached screen-shot.
Comment