diff options
author | wei <> | 2006-05-04 02:02:43 +0000 |
---|---|---|
committer | wei <> | 2006-05-04 02:02:43 +0000 |
commit | 75a0a250cc6735d13b3b782daf0127298b37c2b9 (patch) | |
tree | fc9a1a0b28022d573097dcc7e71b29dfe6c5821f /framework/Web/UI/TControl.php | |
parent | d255f4d0e332740b3984e21ce3f7a4a4f1968ba3 (diff) |
Adding TCallback component.
Diffstat (limited to 'framework/Web/UI/TControl.php')
-rw-r--r-- | framework/Web/UI/TControl.php | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/framework/Web/UI/TControl.php b/framework/Web/UI/TControl.php index 1db01df6..860b6baf 100644 --- a/framework/Web/UI/TControl.php +++ b/framework/Web/UI/TControl.php @@ -1233,12 +1233,11 @@ class TControl extends TApplicationComponent implements IRenderable, IBindable $control->evaluateDynamicContent();
}
}
+
+ if($this->getEnabled() && $this instanceof IPostBackDataHandler)
+ $this->getPage()->registerPostDataLoader($this);
}
$this->_stage=self::CS_PRERENDERED;
-
-
- if($this->getEnabled() && $this instanceof IPostBackDataHandler)
- $this->getPage()->registerPostDataLoader($this);
}
/**
|