extjs 工具提示未显示

发布于 2024-11-08 15:43:48 字数 266 浏览 0 评论 0原文

我有一个这样的工具栏:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

娇柔作态 2024-11-15 15:43:48

在您的代码中,您尝试将工具栏放在工具栏内。您确定这确实是您想要做的吗?

您的工具提示可能不起作用,因为工具提示不是工具栏对象的有效属性。

至于动态更改工具提示文本,您可以使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文