extjs 工具提示未显示
我有一个这样的工具栏:
tbar : {
xtype: 'toolbar',
tooltip: 'Right click to clear',
items: [
{
xtype: 'form',
padding: 2,
height:25
}]
}
我的工具提示不显示。我已经完成了 QuickTips.init()。另外,是否可以在工具提示中包含一些动态文本?
I have a toolbar like this:
tbar : {
xtype: 'toolbar',
tooltip: 'Right click to clear',
items: [
{
xtype: 'form',
padding: 2,
height:25
}]
}
My tooltip does not show up. I have done QuickTips.init(). Also, is it possible to include some dynamic text in the tooltip?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的代码中,您尝试将工具栏放在工具栏内。您确定这确实是您想要做的吗?
您的工具提示可能不起作用,因为工具提示不是工具栏对象的有效属性。
至于动态更改工具提示文本,您可以使用 getText(string) 方法。
根据 ExtJS API 文档,工具栏没有工具提示属性。为了使用工具提示,您需要将工具提示直接应用于 HTML 元素,或在有效的受支持对象上使用工具提示。
In your code, you are attempting to put a toolbar inside of a toolbar. Are you sure that is really what you are trying to do?
Your tooltip probably does not work because tooltip is not a valid property of the toolbar object.
As for dynamically altering the tooltip text, you have the getText(string) method.
According to the ExtJS API documentation, Toolbar does not have a tooltip property. In order to use the tooltip, you'll need to apply the tooltip directly to an HTML element, or use the tooltip on a valid, supported object.