2012-02-08 60 views
0

IE9和ExtJS3 Grid + quickTips有问题。 工具提示没有显示在IE9的标题mouseover上 在其他浏览器 - 它的一切正常,显示良好。问题只与IE9。ExtJS3 QuickTips无法在IE9中工作

我使用它来初始化quicktips:

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的前,而不是在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/

回答

0

我没有找到什么是问题的问题,但解决这个问题。答案是here。我只是在IE8兼容模式下强制IE浏览器。就是这样,它会开始工作。