2012-02-08 46 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瀏覽器。就是這樣,它會開始工作。

相關問題