ファイルのアップロードにファイルフィールドを使用していて、その横にアップロードボタンを配置しています。長いラベルを配置すると、そのレイアウトが壊れ、アップロードボタンが上部に配置されます。ラベルを「上」に揃えたいボタンを下に揃えるにはどうすればよいですか。
Ext.create('Ext.Container', {
renderTo: Ext.getBody(),
bodyPadding: 1,
width: 400,
height: 300,
layout: {
type: 'hbox',
autoSize: true,
align: 'bottom'
},
items: [{
xtype: 'filefield',
labelSeparator: '',
fieldLabel: 'When placing long labels the layout is breaking and the upload button is placed at the top.',
labelAlign: 'top',
buttonText: 'Select',
flex: 1
}, {
xtype: 'button',
text: 'Upload',
width: 50
//,margin: '22 0 0 2'
}]
});