Gwt 当SectionStackSection中有多个项目时,SectionStackSection中的动画不起作用

Gwt 当SectionStackSection中有多个项目时,SectionStackSection中的动画不起作用,gwt,smartgwt,Gwt,Smartgwt,我使用此代码 SectionStack sectionStack = new SectionStack(); sectionStack.setVisibilityMode(VisibilityMode.MULTIPLE); sectionStack.setWidth100(); sectionStack.addSection(createGenerallSettingsSection()); sectionStack.addSection(createIntegr

我使用此代码
SectionStack sectionStack = new SectionStack(); sectionStack.setVisibilityMode(VisibilityMode.MULTIPLE); sectionStack.setWidth100(); sectionStack.addSection(createGenerallSettingsSection()); sectionStack.addSection(createIntegrationSettingsSection()); sectionStack.setAnimateSections(true);

private SectionStackSection createGenerallSettingsSection() {
    SectionStackSection section = new SectionStackSection("General settings");
    section.setExpanded(true);
    section.setResizeable(false);
    section.setItems(getTimeoutField().view());
    return section;
}

private SectionStackSection createIntegrationSettingsSection() {
    SectionStackSection section = new SectionStackSection("Integration");
    section.setExpanded(true);
    section.setResizeable(false);
    section.setItems(getUrl().view(), getUser().view(), getPassword().view());
    return section;
}
然后动画在“常规设置”部分工作,在“集成”部分不工作。 也许有人知道如何解决这个问题


方法view()返回画布对象。SmartGWT版本-2.5。请发布您的SmartGWT版本。2.getUrl().view()、getUser().view()和getPassword().view()是什么?我认为你的问题来自there@Jean-米歇尔加西亚,这在所有浏览器中都会发生吗?