Вам необходимо использовать layout
свойства, такие как vbox
и hbox
, вот пример:
FIDDLE (нажмите Run
, если изображениезагружается неправильно)
Ext.create({
xtype: 'container',
layout: {
type: 'hbox',
align: 'stretch'
},
items: [{
xtype: 'imagecomponent',
width: 500,
alt: 'img1',
src: 'https://i.imgur.com/Y3GKYOF.png'
}, {
xtype: 'container',
layout: {
type: 'vbox',
align: 'stretch'
},
defaults: {
margin: 5
},
items: [{
xtype: 'button',
text: 'Circle'
}, {
xtype: 'button',
text: 'Box'
}, {
xtype: 'button',
text: 'Arrow'
}, {
xtype: 'button',
text: 'TextBox'
}, {
xtype: 'button',
text: 'TextArea'
}, {
xtype: 'button',
text: 'Delete'
}, {
xtype: 'button',
text: 'Save'
}]
}],
renderTo: Ext.getBody()
});