Вот мой код панели.
var overlay = new Ext.Panel({
// We'll set the image src attribute's value programmatically.
//dock:'left',
floating: true,
modal: true,
width: 138,
height: 140,
scroll: false,
layout: {
type: 'vbox',
align:'center',
pack:'center'
},
//defaults:{flex:1},
items:[
{xtype: 'spacer'},
{
xtype: 'button',
ui:'action',
height:30,
width:103,
id: 'profileButton',
text: 'Profile'
},
{xtype: 'spacer'},
{
xtype: 'button',
ui:'action',
height:30,
width:103,
id: 'positionsButton',
text: 'Positions'
},
{xtype: 'spacer'},
{
xtype: 'button',
ui:'action',
height:30,
width:103,
id: 'actionButton',
text: 'Action'
},
{xtype: 'spacer'}
]});