-
7 Oct 2010 1:29 PM #1
Unanswered: Compatibility with Internet Explorer 9
Unanswered: Compatibility with Internet Explorer 9
Hello guys, I've been using EXT Core library since the start of this year, and I noticied that most effects have problems with Internet Explorer 9. Is there any update for EXT Core script for working with less compatibility issues as jQuery does work with IE9 without problems.
-
8 Oct 2010 2:29 AM #2Sencha - Community Support Team
- Join Date
- Mar 2007
- Location
- The Netherlands
- Posts
- 24,251
- Vote Rating
- 40
- Answers
- 1
I assume that this will be fixed quickly after the final IE9 release, but for now you could try replacing:
withCode:isIE7 = isIE && check(/msie 7/), isIE8 = isIE && check(/msie 8/), isIE6 = isIE && !isIE7 && !isIE8,
(in Ext.js)Code:ieVer = /msie (\d+)/i.match(navigator.userAgent), ieVer = ieVer ? parseInt(ieVer[1], 10) : NaN, isIE6 = ieVer <= 6, isIE7 = ieVer == 7, isIE8 = ieVer >= 8,
-
9 Oct 2010 10:53 AM #3
I don't quite understand why no official refactoring for "isIE6 = isIE && !isIE(7, 8, ...)" so far.
Nice fix, thanks Condor.
-
11 Oct 2010 9:57 AM #4
Thanks, I can do the same in ext-core.js ?
Best regards! Greetigns from Brazil.
-
30 Nov 2010 3:26 AM #5
Quick fix, Condor invert string/regexp
Code:ieVer = navigator.userAgent.match(/msie (\d+)/i), ieVer = ieVer ? parseInt(ieVer[1], 10) : 0, isIE6 = isIE && ieVer <= 6, isIE7 = isIE && ieVer == 7, isIE8 = isIE && ieVer >= 8,
-
17 Jan 2011 5:48 PM #6
Thanks for the fix Condor although tree nodes don't appear to be working.
IE9 beta/tree nodes not clickable when a doctype declaration is specified, further details here: http://www.sencha.com/forum/showthre...nd-the-DOCTypeGiven trees are such a widely used component, are there any plans for trees/ IE9 to be supported in 3.3.2?
If so, any updates on when 3.3.2 will be available?
In the interim, can you suggest any additional fixes to get trees working.
-
13 Mar 2011 11:50 PM #7
Hi,
i couldn“t find an information about the ie9 Support by ExtJS 3.3.2. Does Version 3.3.2 support IE9?
Thanks for any Information.
-
15 Mar 2011 5:23 AM #8
Since yesterday, IE9 offically release now. so is there a date for fixing the IE9 problem ?
-
17 Mar 2011 7:25 AM #9
Re: IE 9 compatibility
Re: IE 9 compatibility
I too would like to hear any updates in re: IE9 compatibility, because (as is mentioned in another thread) the TreePanel functionality is completely broken in IE9.
-
15 Apr 2011 1:45 AM #10
Wake up!
Wake up!
Hey guys, it's really time to wake up! IE 9 has been released for weeks now (and MS started pushing it via Windows Update) and there is no Ext version that works. I presume Ext 4 will be able to work with IE9, but Ext 4 is not even released yet. Plus we will need time to convert our code to Ext 4. In the meantime we have to inform users they can't use IE !?!?!
Similar Threads
-
[SOLVED]Internet Explorer cannon open the Internet site
By eyuwang in forum Ext 2.x: Help & DiscussionReplies: 2Last Post: 26 Nov 2008, 4:43 PM -
JS Library: Let Internet Explorer 6 Behave Like Internet Explorer 7
By marc22 in forum Community DiscussionReplies: 0Last Post: 18 Nov 2008, 10:38 AM


Reply With Quote