Hi folks,
I had posted yesterday that im unable to use buttons embedded under decoratedstackpanel in Firefox, so one of the member asked me to use the smart API's rather than combining gwtapi with smart, so did I use the SectionStack with SectionstackSection as below, it works in Firefox and Chrome however it hangs after 2 clicks, is this a known issue? Any help would be grately appreciated. I've faced the same problem with both SMART 2.1 and SMART 2.2
//A_stack consists of Ibuttons one below the other
SectionStack leftSideLayout = new SectionStack();
leftSideLayout.setWidth("15%");
leftSideLayout.setShowResizeBar(true);
leftSideLayout.setVisibilityMode(VisibilityMode.MULTIPLE);
leftSideLayout.setAnimateSections(true);
SectionStackSection analysisSection = new SectionStackSection("Analysis");
analysisSection.setExpanded(false);
analysisSection.setItems(A_stack);
analysisSection.setCanCollapse(true);
leftSideLayout.addSection(analysisSection);
SectionStackSection aboutSection = new SectionStackSection("About");
aboutSection.setExpanded(false);
aboutSection.setItems(A_stack);
aboutSection.setCanCollapse(true);
leftSideLayout.addSection(aboutSection);
SectionStackSection projectSection = new SectionStackSection("Project");
projectSection.setExpanded(false);
projectSection.setItems(A_stack);
projectSection.setCanCollapse(true);
leftSideLayout.addSection(projectSection);
mainLayout.addMember(leftSideLayout);
//where mainLayout = HLayout
Thanks,
VTV
I had posted yesterday that im unable to use buttons embedded under decoratedstackpanel in Firefox, so one of the member asked me to use the smart API's rather than combining gwtapi with smart, so did I use the SectionStack with SectionstackSection as below, it works in Firefox and Chrome however it hangs after 2 clicks, is this a known issue? Any help would be grately appreciated. I've faced the same problem with both SMART 2.1 and SMART 2.2
//A_stack consists of Ibuttons one below the other
SectionStack leftSideLayout = new SectionStack();
leftSideLayout.setWidth("15%");
leftSideLayout.setShowResizeBar(true);
leftSideLayout.setVisibilityMode(VisibilityMode.MULTIPLE);
leftSideLayout.setAnimateSections(true);
SectionStackSection analysisSection = new SectionStackSection("Analysis");
analysisSection.setExpanded(false);
analysisSection.setItems(A_stack);
analysisSection.setCanCollapse(true);
leftSideLayout.addSection(analysisSection);
SectionStackSection aboutSection = new SectionStackSection("About");
aboutSection.setExpanded(false);
aboutSection.setItems(A_stack);
aboutSection.setCanCollapse(true);
leftSideLayout.addSection(aboutSection);
SectionStackSection projectSection = new SectionStackSection("Project");
projectSection.setExpanded(false);
projectSection.setItems(A_stack);
projectSection.setCanCollapse(true);
leftSideLayout.addSection(projectSection);
mainLayout.addMember(leftSideLayout);
//where mainLayout = HLayout
Thanks,
VTV
Comment