diff options
author | xue <> | 2006-04-12 12:18:24 +0000 |
---|---|---|
committer | xue <> | 2006-04-12 12:18:24 +0000 |
commit | 373d8acc503b94ea09823f49e2ab5e395eccc584 (patch) | |
tree | b45dbde451c0a53405aaf9f43ba2dcd6047e044d /framework/Web/UI/WebControls/TWizard.php | |
parent | 64cc0b33281efbef56fbd6495f433906eda50636 (diff) |
Merge from 3.0 branch till 898.
Diffstat (limited to 'framework/Web/UI/WebControls/TWizard.php')
-rw-r--r-- | framework/Web/UI/WebControls/TWizard.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/framework/Web/UI/WebControls/TWizard.php b/framework/Web/UI/WebControls/TWizard.php index 794fb4da..426fd73d 100644 --- a/framework/Web/UI/WebControls/TWizard.php +++ b/framework/Web/UI/WebControls/TWizard.php @@ -735,6 +735,16 @@ class TWizard extends TWebControl implements INamingContainer }
/**
+ * Loads state into the wizard.
+ * This method is invoked by the framework when the control state is being saved.
+ */
+ public function loadState()
+ {
+ // a dummy call to ensure the step is activated
+ $this->getActiveStep();
+ }
+
+ /**
* Indicates the wizard needs to recreate all child controls.
*/
protected function requiresControlsRecreation()
|