Thank you for reporting this bug. We will make it our priority to review this report.
  1. #1
    Ext JS Premium Member
    Join Date
    May 2007
    Location
    London
    Posts
    194
    Vote Rating
    0
    Rowan is on a distinguished road

      0  

    Default [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.domel.nextSibling);
                return 
    this;
            }, 

    Should be
    PHP Code:

            insertAfter
    : function(el){
                (
    el=GETDOM(el)).parentNode.insertBefore(this.domel.nextSibling);
                return 
    this;
            }, 

    Hope that helps someone!

  2. #2
    Sencha - Ext JS Dev Team Animal's Avatar
    Join Date
    Mar 2007
    Location
    Notts/Redwood City
    Posts
    30,458
    Vote Rating
    20
    Animal is a jewel in the rough Animal is a jewel in the rough Animal is a jewel in the rough

      0  

    Default


    nice catch. That's quite obscure.

  3. #3
    Sencha - Architect Dev Team aconran's Avatar
    Join Date
    Mar 2007
    Posts
    8,185
    Vote Rating
    63
    aconran is just really nice aconran is just really nice aconran is just really nice aconran is just really nice aconran is just really nice

      0  

    Default


    Thanks for the bug report. This one has been fixed in SVN for a while.
    Aaron Conran
    @aconran
    Sencha Architect Development Team

  4. #4
    Ext JS Premium Member
    Join Date
    May 2007
    Location
    London
    Posts
    194
    Vote Rating
    0
    Rowan is on a distinguished road

      0  

    Default


    No worries, maybe I should get the code from SVN then...