我在Extjs工作。我有fileuploadfield。它显示默认的浏览器工具提示为"未选择文件"在chrome和"未选择文件"在firefox。我想禁用或隐藏此工具提示。那么如何在extjs中执行这个。
你可以添加一个buttonConfig到你的filefield对象,并指定这些设置来绕过默认的Chrome。我还没能找到在Firefox中删除它的方法。
{
xtype: 'filefield',
buttonConfig: {
xtype: 'filebutton',
text: 'MyButton',
tooltip: ' ',
tooltipType: 'title'
}
}