【发布时间】:2012-01-09 06:10:39
【问题描述】:
当我禁用按钮时,它的工具提示也会禁用。即使按钮被禁用,有没有办法显示工具提示。
//create my button
var myButton = Ext.create('Ext.Button', {
tooltip : 'my Button Tooltip Text',
id : 'my-button ',
iconCls : 'star-icon',
handler: Ext.Function.pass(_rmp.mediaManager.myButtonFunction, this)
});
//disable my button
Ext.getCmp('my-button').disable();
编辑: 对于其他浏览器(chrome、safari、opera),它在 firefox(我使用的是 8.0.1 版)上没有按预期工作。工具提示按预期工作。
【问题讨论】: