我在Extjs工作。我有fileuploadfield。它显示默认浏览器工具提示为chrome中的“no files selected”和firefox中的“no files selected”。 我想禁用或隐藏此工具提示。那么如何在extjs中执行此操作。请帮帮我。
答案 0 :(得分:2)
您可以将buttonConfig添加到文件字段对象,并指定这些设置以绕过Chrome的默认设置。我还没有找到办法在Firefox中摆脱它。
{
xtype: 'filefield',
buttonConfig: {
xtype: 'filebutton',
text: 'MyButton',
tooltip: ' ',
tooltipType: 'title'
}
}