extjs面板适合布局

时间:2011-04-09 08:47:17

标签: extjs

我有一个面板,我将它渲染成一个容器。我希望panel符合container高度,并且不希望指定panel的高度。

但似乎没有办法,我可以做到这一点。

CODE SNIPPET

<div id=Div style="width: 100%; height: 100%;"></div>
var newPanel = new Ext.Panel({
    id: 'newPanel',
    renderTo: 'Div',
    layout: 'fit',
    border: false,
    items: [anotherPanel]
})

任何想法请帮助

3 个答案:

答案 0 :(得分:3)

答案 1 :(得分:3)

在容器上使用“fit”布局,并在子面板上将autoheight和autowidth设置为false。拟合布局应注意使其内部的组件自动“适合”。

答案 2 :(得分:1)

您也可以尝试以下代码:

autoHeight: true