diff options
author | xue <> | 2006-01-22 00:16:20 +0000 |
---|---|---|
committer | xue <> | 2006-01-22 00:16:20 +0000 |
commit | 0c1b167cebac83e63c05ef780f012d7117ed8b81 (patch) | |
tree | 66ef560beb1e5a3261ed3d7869213e4ff71a8d1b /framework/Web/UI/WebControls/TRadioButton.php | |
parent | e8e20e87941ae992afd49f2d70198b0e7437d58e (diff) |
Fixed a few issues with TCheckBox, TLinkButton and TRadioButton.
Diffstat (limited to 'framework/Web/UI/WebControls/TRadioButton.php')
-rw-r--r-- | framework/Web/UI/WebControls/TRadioButton.php | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/framework/Web/UI/WebControls/TRadioButton.php b/framework/Web/UI/WebControls/TRadioButton.php index ee53107a..e756cba6 100644 --- a/framework/Web/UI/WebControls/TRadioButton.php +++ b/framework/Web/UI/WebControls/TRadioButton.php @@ -128,20 +128,6 @@ class TRadioButton extends TCheckBox }
/**
- * @return string the value attribute to be rendered
- */
- private function getValueAttribute()
- {
- if(($value=$this->getAttribute('value'))===null)
- {
- $value=$this->getID();
- return $value===''?$this->getUniqueID():$value;
- }
- else
- return $value;
- }
-
- /**
* Renders a radiobutton input element.
* @param THtmlWriter the writer for the rendering purpose
* @param string checkbox id
|