Problems with Explorer 9

  1. #1

    Problems with Explorer 9

    Hello everyone,
    I installed Eplorer 9, but I can not expand the tree examples of Ext.Net
    Has anyone encountered the same problem?
    Thanks a lot
    Fabrizio
  2. #2

    It works in compatibility mode

    It works in compatibility mode
  3. #3
    There are quite a few problems in IE9 - mostly broken - at least in IE9 beta
  4. #4
    Hi,

    Try the following js fix (place it to the HEAD section of page)

    var ieVer = /msie (\d+)/i.match(navigator.userAgent);
    ieVer = ieVer ? parseInt(ieVer[1], 10) : 0;
    Ext.isIE6 = Ext.isIE && ieVer <= 6;
    Ext.isIE7 = Ext.isIE && ieVer == 7;
    Ext.isIE8 = Ext.isIE && ieVer >= 8;

Similar Threads

  1. Replies: 6
    Last Post: Apr 28, 2011, 11:52 AM
  2. 1.0 Examples Explorer
    By preussmd in forum 1.x Help
    Replies: 1
    Last Post: Nov 07, 2010, 7:47 PM
  3. [1.0] Examples Explorer
    By r_honey in forum Open Discussions
    Replies: 18
    Last Post: May 31, 2010, 5:06 PM
  4. 0.8.2 Example Explorer Crashes
    By michaeld in forum 1.x Help
    Replies: 0
    Last Post: Jan 28, 2010, 9:16 PM
  5. Examples Explorer 7.0
    By amitpareek in forum Open Discussions
    Replies: 2
    Last Post: Nov 26, 2008, 8:59 AM

Posting Permissions