diff options
author | xue <> | 2006-01-21 03:57:16 +0000 |
---|---|---|
committer | xue <> | 2006-01-21 03:57:16 +0000 |
commit | baf2eb12bc99905ad18fadaa4a542a0d109f9245 (patch) | |
tree | cb02339aabb9e11e487108a85668fbf242c21326 /framework/Web/UI/WebControls/TTextBox.php | |
parent | 039ef5bb2acd9cde5073e4d20459f9d088f0892e (diff) |
TTextBox demo completed. Fixed a few issues related with AutoPostBack=true.
Diffstat (limited to 'framework/Web/UI/WebControls/TTextBox.php')
-rw-r--r-- | framework/Web/UI/WebControls/TTextBox.php | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/framework/Web/UI/WebControls/TTextBox.php b/framework/Web/UI/WebControls/TTextBox.php index 111fec1e..276982ac 100644 --- a/framework/Web/UI/WebControls/TTextBox.php +++ b/framework/Web/UI/WebControls/TTextBox.php @@ -232,13 +232,8 @@ class TTextBox extends TWebControl implements IPostBackDataHandler, IValidatable */
public function raisePostDataChangedEvent()
{
- $page=$this->getPage();
- if($this->getAutoPostBack() && !$page->getPostBackEventTarget())
- {
- $page->setPostBackEventTarget($this);
- if($this->getCausesValidation())
- $page->validate($this->getValidationGroup());
- }
+ if($this->getAutoPostBack() && $this->getCausesValidation())
+ $this->getPage()->validate($this->getValidationGroup());
$this->onTextChanged(null);
}
|