显示Vaadin面板虽然设置为隐形

时间:2016-06-27 08:23:18

标签: java web-applications vaadin vaadin7

我有一个vaadin应用程序并具有以下代码

Panel thePanel = new Panel("MainPanel");
HorizontalLayout panelContent = new HorizontalLayout();
panelContent.setSpacing(true);
panelContent.setMargin(true);
panelContent.setWidth("100%");
Label description = new Label("Description");
panelContent.addComponent(description);
panelContent.setVisible(false);
thePanel.addClickListener((e) -> panelContent.setVisible(! panelContent.isVisible()));
thePanel.setContent(panelContent);

此面板将添加到VerticalLayout,并将其设置为选项卡表的选项卡。

我的问题是当页面加载时面板是可见的。

enter image description here 只有当点击其中一个工作预期 enter image description here

为什么后者在开头没有显示?

由于

1 个答案:

答案 0 :(得分:0)

作为评论的人,我也不能再复制它了。它现在显示了预期的行为