在我的项目中,我试图将容器定位为绝对容器。但如果我这样做,它也会影响邻居项目。我的意思是,在定位容器之后,如果我给那个特定的容器一些宽度和高度,它会影响所有的工具栏。(我不想发生)。即使我使用layout: 'absolute
or css也会发生这种效果position:absolute
。
这是我的相关代码:
xtype: 'panel',
dockedItems: [{
dock: 'top',
xtype: 'toolbar',
height: 40,
items: [
{
//only this should be absolute positioned
xtype: 'container',
cls: 'logo', //tried with applying css styles !important
//even tried with layout: 'absolute'
},'-',
//the below elements should not move their position
//even if the above one has been applied positioning.
{
xtype: 'container'
},'->',
{
xtype: 'container'
}]
}],
在这里,我的目标是将容器带出,toolbar
因为它应该比toolbar
保持其他容器保持不变的高度更大。