我正在使用文件字段进行文件上传,并且在其旁边放置了一个上传按钮。放置长标签时,其布局中断,上传按钮位于顶部。我希望我的标签对齐到“顶部”如何将按钮对齐到底部。
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'
}]
});