Extjs fileuploadfield默认浏览器工具提示问题

时间:2016-10-04 14:56:51

标签: extjs file-upload tooltip

我在Extjs工作。我有fileuploadfield。它显示默认浏览器工具提示为chrome中的“no files selected”和firefox中的“no files selected”。 我想禁用或隐藏此工具提示。那么如何在extjs中执行此操作。请帮帮我。

1 个答案:

答案 0 :(得分:2)

您可以将buttonConfig添加到文件字段对象,并指定这些设置以绕过Chrome的默认设置。我还没有找到办法在Firefox中摆脱它。

                {
                    xtype: 'filefield',
                    buttonConfig: {
                        xtype: 'filebutton',
                        text: 'MyButton',
                        tooltip: ' ',
                        tooltipType: 'title'
                    }
                }