【发布时间】:2012-02-08 08:53:44
【问题描述】:
在使用 IE9 和 ExtJS3 Grid + quickTips 时遇到问题。 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/
【问题讨论】:
标签: javascript extjs grid extjs3 qtip