我有一个由一些按钮组成的expandoPane。
当我在项目中执行其他操作然后展开此expandoPane时,其内容将被隐藏,并且仅在使用拆分器调整其大小后才会显示。
我想解决这个问题。 你知道为什么内容不可见吗?
答案 0 :(得分:0)
当内容窗格显示时,您需要调用.startup和.resize()。
类似的东西:
expandoPane.connect(this, "onClick", function() {
that.createContent();
that.startup();
that.container.resize()
});
发布您的代码,我可能会给您更具体的信息。
答案 1 :(得分:0)
添加示例代码:
<div id="expandableConsole" dojoType="dojox.layout.ExpandoPane" region="bottom" showTitle='true' maxHeight="250px" maxWidth="280px" style="height:200px; width:100%;" doLayout='true' startExpanded='false' splitter="true">
<div>
<input type="button" id="btnSubmit" style="width:88px;height:20px" onclick="update()">
</div>
<div dojoType="dijit.layout.ContentPane" id="infoBar" style="height:150px">
</div>
</div>
当我在几次操作后展开expandopane时,button和contentpane变得不可见。