Extjs 6.2.0 鼠标悬停提示

拟墨画扇 提交于 2020-03-23 04:30:55

鼠标悬停提示详细信息属性 tooltip :'这里是提示的信息'

例如:上传文件按钮,鼠标移上去提示可以上传文件类型大小或者其他注意事项.
代码:

        items: [{
            xtype: 'ext-fastsmart-button-button',
            html: '<div class="x-link-text-color" style="font-size: 15px;">+ 附件上传</div>',
            tooltip :'附件不能超过5个文件,每个文件不能大于10M,不支持可执行程序及压缩包格式(.exe、.rar/.zip);附件文件名不能超过50字符(汉字25)',
            style: "text-align: center;margin: 0; margin-right:0px;padding:0;border-radius: 0px; border: 1px dashed #3388FF;background-color:white;",
            name: 'btnSelect',
            bind: {
                disabled: '{uploading}'
            },

  


效果图:

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!