-
14 Feb 2012 2:19 AM #1
Unanswered: tbtext align center
Unanswered: tbtext align center
Is it possible put on the center of the toolbar a tbtext ??
Ing theMAdPumpkin
-
14 Feb 2012 4:25 AM #2
You can override the default layout of the Toolbar, like so:
Code:Ext.create('Ext.window.Window', { dockedItems: [{ xtype: 'toolbar', dock: 'top', layout: { type: 'hbox', pack: 'center' }, items: [{ xtype: 'tbtext', text: 'Some Centered Text' }] }], height: 250, title: 'Toolbar Test', width: 350 }).show();


Reply With Quote