Changeset 2419

Show
Ignore:
Timestamp:
04/08/2008 10:52:53 AM (9 months ago)
Author:
tof
Message:

Fixed #679

Location:
trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/HISTORY

    r2418 r2419  
    55BUG: Ticket#669 - Strange rendering behaviour with TActivePanel (Christophe) 
    66BUG: Ticket#671 - TActiveCustomValidator Callback Problem (Christophe) 
     7BUG: Ticket#679 - TActiveLabel can't be shown from inside TRepeater. TActiveRadioButton cant be unchecked (Christophe) 
    78BUG: Ticket#707 - TPropertyAccess sets property twice on object when using setters (Qiang) 
    89BUG: Ticket#719 - TAutoCompleter should not trigger Validation if CausesValidation=False (Christophe) 
  • trunk/framework/Web/UI/ActiveControls/TActiveControlAdapter.php

    r1453 r2419  
    144144 
    145145        /** 
    146          * Loads additional persistent control state. Starts viewstate tracking 
    147          * if necessary. 
    148          */ 
    149         public function loadState() 
     146         * Starts viewstate tracking if necessary after when controls has been loaded 
     147         */ 
     148        public function onLoad($param) 
    150149        { 
    151150                if($this->getIsTrackingPageState()) 
     
    154153                        $this->_stateTracker->trackChanges(); 
    155154                } 
    156                 parent::loadState(); 
     155                parent::onLoad($param); 
    157156        } 
    158157