diff options
-rw-r--r-- | HISTORY | 5 | ||||
-rw-r--r-- | framework/Web/UI/WebControls/TWizard.php | 1 |
2 files changed, 4 insertions, 2 deletions
@@ -5,8 +5,9 @@ EHN: Issue #292 - Events should have priorities to allow event handler order to Version 3.2.2 to be released -ENH: Issue 433: Prado object-creation performance micro-optimizations -BUG: Issue 434: Buttons stops working properly after response->writeFile +ENH: Issue #433 - Prado object-creation performance micro-optimizations (gabor) +BUG: Issue #434 - Buttons stops working properly after response->writeFile (ctrlaltca) +BUG: Issue #435 - TWizard + No ID = Prototype Error (ctrlaltca) Version 3.2.1 Jan 19, 2013 diff --git a/framework/Web/UI/WebControls/TWizard.php b/framework/Web/UI/WebControls/TWizard.php index 65304ef8..7929f88f 100644 --- a/framework/Web/UI/WebControls/TWizard.php +++ b/framework/Web/UI/WebControls/TWizard.php @@ -772,6 +772,7 @@ class TWizard extends TWebControl implements INamingContainer { parent::onInit($param); $this->ensureChildControls(); + $this->setEnsureId(true); if($this->getActiveStepIndex()<0 && $this->getWizardSteps()->getCount()>0) $this->setActiveStepIndex(0); } |