【发布时间】:2012-12-06 16:03:43
【问题描述】:
我正在使用文件字段进行文件上传,并且在其旁边放置了一个上传按钮。 放置长标签时,其布局中断,上传按钮位于顶部。 我希望我的标签与“顶部”对齐 如何使按钮底部对齐。
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'
}]
});
【问题讨论】:
标签: javascript css file-upload extjs extjs4.1