ExtJS3 QuickTips 在 IE9 中不起作用
使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找不到问题所在,但解决这个问题。答案是 在这里。我只是强制 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.