ExtJS3 QuickTips 在 IE9 中不起作用

发布于 2025-01-04 06:26:27 字数 1175 浏览 0 评论 0原文

使用 IE9 和 ExtJS3 Grid + 快速提示时遇到问题。 IE9 中鼠标悬停在标题上时不显示工具提示 在其他浏览器中 - 一切正常,显示良好。仅 IE9 有问题。

我用它来初始化快速提示:

Ext.BLANK_IMAGE_URL = "js/ext-3.3.1/resources/images/default/s.gif";
Ext.QuickTips.init();[/CODE]

cm = new Ext.grid.ColumnModel({
    defaults: {
        sortable: true, // columns are not sortable by default          
        menuDisabled: true
    },
    columns: [

        {
           tooltip: "Id is here<br />And second line",
            header: 'Id',
            dataIndex: 'id',
            width: 50
        },

是这个测试应用程序: http://softm.org.ua/projects/extjs3quicktips/admin.php

你可以看到,工具提示在 FF 中显示为 ex,而在 IE9 中不显示。

请帮助我在 IE0 中的 ExtJS 网格中显示 QuckTips 似乎这是 css 问题,但我无法定义到底发生了什么

PS。突然我注意到 QuckTips+ExtJS3 网格在 Ie9 中运行良好,但在 fancybox iframe 中运行良好。 这是示例: http://softm.org.ua/quicktips-of-extjs-not-working-in-ie9-another-one-extjs3-issue-to-resolve/

Have trouble with IE9 and ExtJS3 Grid + quickTips.
Tooltips not shows on headers mouseover in IE9
In other browsers - its all ok, shows well. Problem only with IE9.

I use this to init quicktips:

Ext.BLANK_IMAGE_URL = "js/ext-3.3.1/resources/images/default/s.gif";
Ext.QuickTips.init();[/CODE]

And this:

cm = new Ext.grid.ColumnModel({
    defaults: {
        sortable: true, // columns are not sortable by default          
        menuDisabled: true
    },
    columns: [

        {
           tooltip: "Id is here<br />And second line",
            header: 'Id',
            dataIndex: 'id',
            width: 50
        },

Here is this test app:
http://softm.org.ua/projects/extjs3quicktips/admin.php

Yor can see, tooltips shows in FF as ex, and not shows in IE9.

Pls help me to show QuckTips in ExtJS grid in IE0
Seems this is css issue, but i cant define what exactly happens

PS. Suddenly i noticed that QuckTips+ExtJS3 grid works well in Ie9 but inside fancybox iframe.
Here is example : http://softm.org.ua/quicktips-of-extjs-not-working-in-ie9-another-one-extjs3-issue-to-resolve/

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

洛阳烟雨空心柳 2025-01-11 06:26:27

我找不到问题所在,但解决这个问题。答案是 在这里。我只是强制 IE 处于 IE8 兼容模式。就这样,它将开始工作。

I not find what was matter of issue, but fix this. Answer is here. I simply force IE in IE8 compatible mode. Thats all, it will start working.

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