我正在使用ExtJs 5。 我在表单中放置了一个树面板。因为我想要一个带树的标签,所以我将树放入字段容器中,然后将字段容器放入表单中。
......
{
xtype:'form',
items:[{
xtype:'fieldcontainer',
label:'tree',
items:[{
xtype:'treepanel',
root:{
expanded:false,
children:[{...}]//This content is big enough to make the tree overflow.
}
}]
]
}
......
我知道修复高度配置可以解决它。但我不想为树或容器提供修复高度/ maxHeight。我希望它能够满足浏览器中的整个空间。 有人可以帮忙吗?