summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorctrlaltca <>2013-01-25 19:02:45 +0000
committerctrlaltca <>2013-01-25 19:02:45 +0000
commit6b390ff3a048b93e1a5feab758cdab7bfdc9b3d1 (patch)
tree3008dd776b26ca421caf5540165f55ca9ddde28d
parent1a0a80efe96779984c8347d0025679f752793f91 (diff)
backported r3265 to trunk/
-rw-r--r--HISTORY5
-rw-r--r--framework/Web/UI/WebControls/TWizard.php1
2 files changed, 4 insertions, 2 deletions
diff --git a/HISTORY b/HISTORY
index bbb1daca..a5ca175f 100644
--- a/HISTORY
+++ b/HISTORY
@@ -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);
}