如何告诉 extjs4 在hbox
布局中只拉伸一个元素?
例如我有以下布局:
{
flex: 1,
layout: {
type: 'vbox',
align: 'stretch'
},
items: [{
flex: 1,
// GRID, needs to be stretched
}, {
// button, don't stretch
}, {
// another button, don't stretch
}]
}
在上面的代码中,所有元素(包括按钮)都被拉伸了。可以在盒子布局中使用吗?
当然,我可以在 hbox 容器中包装按钮,但我不喜欢这种解决方案。