ツールバー内に3つの領域を左、中央、右に配置するにはどうすればよいですか?次のすべてのアイテムに対して適切に配置されたコンテナをトリガーするために使用できることは知ってい->
ますが、中央はどうですか?
質問する
42950 次
4 に答える
26
あなたはトリックでこれをアーカイブすることができます:
Ext.create('Ext.panel.Panel', {
title: 'Toolbar Fill Example',
width: 300,
height: 200,
tbar : [
'Item 1',
{ xtype: 'tbfill' },
'Item 4',
{ xtype: 'tbfill' },
'Item 2'
],
renderTo: Ext.getBody()
});
ご了承ください:
[
'Item 1',
'->',
'Item 4',
'->',
'Item 2'
]
すべて同じように動作しています。
それがどのように働きますか
->
または、xtypetbfill
は、構成を含む空のコンポーネントにすぎませんflex: 1
。
于 2012-12-19T09:16:35.127 に答える
5
Ext.create('Ext.panel.Panel', {
title: 'Toolbar Fill Example',
width: 300,
height: 200,
tbarCfg:{
buttonAlign:'center' //for center align
// buttonAlign:'left' //for left align
// buttonAlign:'right' //for right align
},
tbar : [
'Item 1',
{ xtype: 'tbfill' },
'Item 4',
{ xtype: 'tbfill' },
'Item 2'
],
renderTo: Ext.getBody()
});
于 2012-12-19T13:26:02.840 に答える
4
For Right:
bbar: ['->',{
xtype: 'button',
text: 'xyz',
}]
For Left:
bbar: ['<-',{
xtype: 'button',
text: 'xyz',
}]
于 2016-07-20T11:32:26.640 に答える
2
dockedItems:[{xtype:'toolbar'、buttonAlign:'center'、dock:'top'、items:[{text:'Docked to the top'}]}]
于 2012-12-19T09:26:38.860 に答える