我有以下内容:
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");
这也不起作用。
有什么想法吗?