我希望在我的道场手风琴中将所有内容窗格的高度设置为AUTO。但它目前正在为手风琴设定def高度或高度。 有没有人知道如何在dijit.layout.accordionpane中将内容窗格的高度设置为动态或自动。
这是我的示例代码。
<div dojoType="dijit.layout.AccordionContainer" id="@getId("Accordion")" duration="80" style="width: 760px; height:auto;">
<div dojoType="dijit.layout.ContentPane" id="@getId("InfoPane")" selected="true"
title="Basic Information">
</div>
<div dojoType="dijit.layout.ContentPane" id="@getId("ContactPane")" title="Contact
Information">
</div>
</div>
请建议。
谢谢, 的Vivek
答案 0 :(得分:0)
我使用了Accordion的doLayout参数。
这样,所有ContentPane的高度都将设置为其内容而不是Accordion高度。