我之前在这里问过这个问题,但可能是因为缺乏理解,没有人回答正确。我正在尝试在父容器toolbar
的事件中使用(或您想要推荐的其他东西) 。mouseenter
现在,我在toolbar
父容器的底部可见,正在调整container2
具有flex: 1
.
这是我的代码:
var hContainer = []; //adding many blocks to this dynamically
hContainer.push({
xtype: 'panel',
flex:1,
layout: {type:'vbox',align:'stretch'},
items:[{
xtype: 'container',
height: 10,
html: 'hello'
},
{
xtype: 'container',
flex: 1
}]
})
然后mouseenter
是父容器的事件,即。panel
添加下面的变量是这样的parentContainer.add(upperController)
。
var upperController = {
xtype: 'toolbar',
defaultAlign: 'tl', //no effect at all
items: ['->',{
xtype: 'button',
text: '+'
}]
}