Changeset 2419
- Timestamp:
- 04/08/2008 10:52:53 AM (9 months ago)
- Location:
- trunk
- Files:
-
- 2 modified
-
HISTORY (modified) (1 diff)
-
framework/Web/UI/ActiveControls/TActiveControlAdapter.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/HISTORY
r2418 r2419 5 5 BUG: Ticket#669 - Strange rendering behaviour with TActivePanel (Christophe) 6 6 BUG: Ticket#671 - TActiveCustomValidator Callback Problem (Christophe) 7 BUG: Ticket#679 - TActiveLabel can't be shown from inside TRepeater. TActiveRadioButton cant be unchecked (Christophe) 7 8 BUG: Ticket#707 - TPropertyAccess sets property twice on object when using setters (Qiang) 8 9 BUG: Ticket#719 - TAutoCompleter should not trigger Validation if CausesValidation=False (Christophe) -
trunk/framework/Web/UI/ActiveControls/TActiveControlAdapter.php
r1453 r2419 144 144 145 145 /** 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) 150 149 { 151 150 if($this->getIsTrackingPageState()) … … 154 153 $this->_stateTracker->trackChanges(); 155 154 } 156 parent:: loadState();155 parent::onLoad($param); 157 156 } 158 157
