-
24 May 2011 3:00 PM #11
I hadn't tried
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8">
as I already have
<meta http-equiv="X-UA-Compatible" content="IE=IE9">
because I'm relying on HTML5 features in IE9 and I need to force it into strict IE9 mode.
Could investigate
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8, IE=9">
as you can specify more than one such tag, but I suspect you'll either get IE8 or IE9 mode overall.
Of course if you don't need strict compliance (HTML5, CSS3, etc) then this sounds like an easier fix
-
1 Jun 2011 12:35 AM #12
Ext 3.3.1 knows nothing of IE9
Ext 3.3.1 knows nothing of IE9
It has no ability to detect IE9, so thinks you are running pre version 6 to a certain extent..
in ext-base-debug.js if you change the following line it appears to work:
to:Code:isIE8 = isIE && (check(/msie 8/) && docMode != 7),
This is clearly a bodge, but I haven't found an issue in my app yet.Code:isIE8 = isIE && (check(/msie [89]/) && docMode != 7),
You obviously need to make sure you are including the debug file, and you will need to reminify for production.
-
6 Jun 2011 7:16 PM #13
-
26 Jun 2011 9:50 PM #14
-
27 Jun 2011 5:02 AM #15
Also, Ext JS 3.4.0 is released, specific to IE9 issues and fixes. Most of the issues seems to be addressed in there !
-
4 Dec 2012 9:05 AM #16
Override
Override
Hello,
I was façing the same issue on a TreePanel.
IE9 is building its dom as firefox and chrome and so the research of the tree-node-id (tree elements) doesn't retrieve any elements;
This is how I fixed the problem : I overrided the method getAttributeNS of Ext.Element :
Code:Ext.override(Ext.Element, { /** * Returns the value of a namespaced attribute from the element's underlying DOM node. * @param {String} namespace The namespace in which to look for the attribute * @param {String} name The attribute name * @return {String} The attribute value */ getAttributeNS : Ext.isIE && !Ext.isIE9 ? function(ns, name){ var d = this.dom; var type = typeof d[ns+":"+name]; if(type != 'undefined' && type != 'unknown'){ return d[ns+":"+name]; } return d[name]; } : function(ns, name){ var d = this.dom; return d.getAttributeNS(ns, name) || d.getAttribute(ns+":"+name) || d.getAttribute(name) || d[name]; } });
-
5 Feb 2013 11:13 PM #17
Does any one came up with a solution for that? I am using ExtJs 3.2.1 with IE9 and I got this problem. Suggestion:
did not work for me as well. Is anyone working on fixing that in ExtJs team? It is a big problem I think...This is how I fixed the problem : I overrided the method getAttributeNS of Ext.Element :
Any info would be appreciated...
cheers,
Pawel
-
6 Feb 2013 3:22 AM #18
I fixed the problem in getNode method in Ext.tree.TreeEvenModel:
Problem was in getting the ID. It was undefined all the time. Method Ext.fly returned null, and this is why Tree did not want to work. Hope this will help someoneCode:Ext.isIE9 = Ext.isIE && (/msie 9/).test(navigator.userAgent.toLowerCase()); if (Ext.isIE9) { Ext.override(Ext.tree.TreeEventModel, { getNode: function (e) { var t; if (t = e.getTarget('.x-tree-node-el', 10)) { //var id = Ext.fly(t, '_treeEvents').getAttribute('tree-node-id', 'ext');// BUG !!! var id = e.getTarget('.x-tree-node-el', 10).getAttribute("ext:tree-node-id") // FIX!!! if (id) { return this.tree.getNodeById(id); } } return null; } }
cheers!
Thank you for reporting this bug. We will make it our priority to review this report.
Similar Threads
-
[OPEN-1278] SCRIPT438 error with IE9 Beta and ext-all-debug.js
By stevenwilford in forum Ext 3.x: BugsReplies: 8Last Post: 9 Apr 2012, 7:05 AM -
What's going on with ie9 support?
By Ozone in forum Community DiscussionReplies: 11Last Post: 15 Sep 2010, 11:16 PM -
hiding open arrow for childless folder in TreePanel
By nickbrook72 in forum Ext: Q&AReplies: 2Last Post: 17 Aug 2010, 8:50 AM -
A Glimpse at IE9 (the early days)
By hendricd in forum Community DiscussionReplies: 13Last Post: 6 May 2010, 11:44 PM


Reply With Quote