-
4 Mar 2011 10:29 PM #1
Menu shadow probolem in IE9
Menu shadow probolem in IE9
createContextualFragment
Script Error At DomHelper
file:ext-all-debug.js
line:508
frag = range.createContextualFragment(html);
method createContextualFragment not support!
-
10 Mar 2011 9:06 AM #2
Same issue. Anyone have an idea?
Noah
Senior Web Developer
NBA.com
-
10 Mar 2011 9:51 AM #3
Solved:
createContextualFragment is not supported in IE9.
Add this code somewhere:
Code:if ((typeof Range !== "undefined") && !Range.prototype.createContextualFragment) { Range.prototype.createContextualFragment = function(html) { var frag = document.createDocumentFragment(), div = document.createElement("div"); frag.appendChild(div); div.outerHTML = html; return frag; }; }Noah
Senior Web Developer
NBA.com
-
13 Jul 2011 1:23 PM #4
That seems to do the trick.
Thank you for reporting this bug. We will make it our priority to review this report.
Similar Threads
-
[2.1][CLOSED] Bug in menu redraw for the shadow if item hidden.
By Yossi in forum Ext 2.x: BugsReplies: 3Last Post: 5 Jul 2008, 8:44 AM -
Drop shadow effect with Ext.Shadow / Ext.Layer?
By deeptii in forum Ext 2.x: Help & DiscussionReplies: 3Last Post: 8 Nov 2007, 9:12 AM -
[1.1][CLOSED] Menu shadow is not updated when its content is changed while visible
By splintor in forum Ext 1.x: BugsReplies: 1Last Post: 9 Oct 2007, 12:53 PM



Reply With Quote