-
19 May 2009 7:43 AM #1
[FIXED] [Core 3.0 Beta] Element InsertAfter IE6
[FIXED] [Core 3.0 Beta] Element InsertAfter IE6
is
PHP Code:
insertAfter: function(el){
el=GETDOM(el).parentNode.insertBefore(this.dom, el.nextSibling);
return this;
},
Should be
PHP Code:
insertAfter: function(el){
(el=GETDOM(el)).parentNode.insertBefore(this.dom, el.nextSibling);
return this;
},
Hope that helps someone!
-
19 May 2009 7:59 AM #2
nice catch. That's quite obscure.Search the forum: http://www.google.com/coop/cse?cx=01...%3Az7of1ufqccu
Read the docs too: http://extjs.com/deploy/dev/docs/
Scope: http://extjs.com/forum/showthread.ph...642#post257642
-
19 May 2009 8:07 AM #3
Thanks for the bug report. This one has been fixed in SVN for a while.
Aaron Conran
@aconran
Sencha Architect Development Team
-
20 May 2009 12:32 AM #4
No worries, maybe I should get the code from SVN then...
Thank you for reporting this bug. We will make it our priority to review this report.


Reply With Quote