如何在运行时更改Ext Js Button工具提示?

时间:2014-09-04 18:03:10

标签: javascript button extjs tooltip

我有以下内容:

var panel = headerPanel.add({
    id: 'recentcommands_button_id',
    xtype: 'button',
    text: "Recent Commands",
    tooltip: "Sample Tooltip Text"
}); 

稍后通过:

Ext.getCmp('recentcommands_button_id').tooltip = "TEST";

如果检查按钮的属性,但实际上没有更改屏幕上的值,则会正确设置工具提示值。

我尝试使用:

Ext.getCmp('recentcommands_button_id').tooltip.update("TEST");

这也不起作用。

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

您可以使用setTooltip方法:

Ext.getCmp('recentcommands_button_id').setTooltip("TEST");