ExtJS4 - 表单提交按钮周围出现的大纲
ExtJS4 - Outline appearing around Submit button for form
我有一个 fileuploadfield
按钮,它后面有一个白色框的轮廓。有没有办法删除它?
这似乎只是 Extjs4 中的一个问题。
代码
items: [{
xtype: 'form',
name: 'upload_form',
border: false,
items: {
text: 'File Upload',
xtype: 'fileuploadfield',
name: 'upload_btn',
buttonText: 'Upload File...',
buttonOnly: true,
hideLabel: true,
allowBlank: false,
clearOnSubmit: false,
}
}]
由于您必须在表单中包含 fileuploadfield
,我的解决方法是在表单中使用 bodyStyle
配置,将 background-color
设置为透明,并将 margin-top
重新居中 fileuploadfield
.
查看 fiddle
我有一个 fileuploadfield
按钮,它后面有一个白色框的轮廓。有没有办法删除它?
这似乎只是 Extjs4 中的一个问题。
代码
items: [{
xtype: 'form',
name: 'upload_form',
border: false,
items: {
text: 'File Upload',
xtype: 'fileuploadfield',
name: 'upload_btn',
buttonText: 'Upload File...',
buttonOnly: true,
hideLabel: true,
allowBlank: false,
clearOnSubmit: false,
}
}]
由于您必须在表单中包含 fileuploadfield
,我的解决方法是在表单中使用 bodyStyle
配置,将 background-color
设置为透明,并将 margin-top
重新居中 fileuploadfield
.
查看 fiddle