diff options
author | xue <> | 2007-07-19 12:26:26 +0000 |
---|---|---|
committer | xue <> | 2007-07-19 12:26:26 +0000 |
commit | 8f1347c3d3fc85fb894077042b0c359928dd9233 (patch) | |
tree | 6bd3b02d745dac8029e7ea990e60bbbe2ef73512 /framework/Web/UI/WebControls/TRadioButton.php | |
parent | c20d7eed7c840fbc3224a468356ba47e8d305f03 (diff) |
Fixed #592.
Diffstat (limited to 'framework/Web/UI/WebControls/TRadioButton.php')
-rw-r--r-- | framework/Web/UI/WebControls/TRadioButton.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Web/UI/WebControls/TRadioButton.php b/framework/Web/UI/WebControls/TRadioButton.php index 727b3b3a..fff7b475 100644 --- a/framework/Web/UI/WebControls/TRadioButton.php +++ b/framework/Web/UI/WebControls/TRadioButton.php @@ -162,7 +162,7 @@ class TRadioButton extends TCheckBox {
parent::addToPostDataLoader();
$group = $this->getGroupName();
- if(!empty($group))
+ if(!empty($group) || $this->getViewState('UniqueGroupName','') !== '')
$this->getPage()->registerPostDataLoader($this->getUniqueGroupName());
}
/**
|