diff options
author | xue <> | 2006-01-24 00:40:46 +0000 |
---|---|---|
committer | xue <> | 2006-01-24 00:40:46 +0000 |
commit | 8315c49b766ae0ae4c6729f641f6c83c50636b6c (patch) | |
tree | 39c700e7d6097ca6b70147952038f470ee799167 /framework/Web/UI/WebControls/TCheckBox.php | |
parent | 4282256a7bf5580cd0fa22ce9686024352f23a6f (diff) |
Fixed a few issues with TCheckBox about validator.
Diffstat (limited to 'framework/Web/UI/WebControls/TCheckBox.php')
-rw-r--r-- | framework/Web/UI/WebControls/TCheckBox.php | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/framework/Web/UI/WebControls/TCheckBox.php b/framework/Web/UI/WebControls/TCheckBox.php index 47fabd20..98084009 100644 --- a/framework/Web/UI/WebControls/TCheckBox.php +++ b/framework/Web/UI/WebControls/TCheckBox.php @@ -76,13 +76,8 @@ class TCheckBox extends TWebControl implements IPostBackDataHandler, IValidatabl */
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->onCheckedChanged(null);
}
|