[CLOSED] Internet Explorer 9 compatibility

  1. #1

    [CLOSED] Internet Explorer 9 compatibility

    Hi guys,

    Is there any word on Internet Explorer 9 compatibility? I know IE9 is not final yet but as there are currently a lot of problems running Ext.Net under it, I am a little bit worried about what will happen when it is released.

    For example, the examples on the ext.net website do not work because the tree nodes don't expand. Next, my project's log on screen throws some javascript exceptions and the progressbar doesn't animate.

    By the way, the search option in this forum doesn't allow me to search for "IE9" because it says the term is too short or something. I think it would be a good thing to be able to perform such a search.

    Thanks,

    Sandor Drieënhuizen,
    Subspace.
    Last edited by Daniil; Apr 01, 2011 at 12:21 PM. Reason: [CLOSED]
  2. #2
    Hi,

    Did you test online examples explorer? Or local?
    We use one fix on online examples explorer
    /* !!! remove after adding IE9 support to the ExtJS */
    var ieVer = /msie (\d+)/i.exec(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;
    Can you confirm that that fix doesn't work?
  3. #3
    Hi,

    I tested using the online examples explorer so I guess that means the fix doesn't work. I installed IE9 only a week ago, so maybe your version is a little older?
  4. #4
    Hi,

    Well, I guess that the fix must be applied directly in ExtJS source files (need to modify ExtJS files)
    Also, i found another fix (additional) for IE9
    http://www.sencha.com/forum/showthre...&highlight=IE9

    In any way, the problem will be considered after IE9 final release only
  5. #5
    Thanks Vladimir.
  6. #6

    That day has come...

    I just installed and the problems have begun.
  7. #7
    Hi,

    Major IE9 bugs is fixed in SVN already
  8. #8
    Ah, great. I will be testing it today.

Similar Threads

  1. [CLOSED] ViewPort Internet Explorer bug
    By boris in forum 2.x Legacy Premium Help
    Replies: 2
    Last Post: Feb 28, 2012, 12:01 PM
  2. Internet Explorer exception
    By igitur in forum 1.x Help
    Replies: 3
    Last Post: Oct 06, 2010, 2:17 PM
  3. Trouble with internet explorer
    By W.villevoye in forum 1.x Help
    Replies: 0
    Last Post: Jun 17, 2010, 9:53 AM
  4. [CLOSED] internet explorer cannot open the internet site
    By speedstepmem4 in forum 1.x Legacy Premium Help
    Replies: 3
    Last Post: Apr 28, 2009, 10:30 AM
  5. Internet Explorer 8
    By Ben in forum Open Discussions
    Replies: 3
    Last Post: Feb 25, 2009, 12:38 AM

Tags for this Thread

Posting Permissions