From b181cd60a8fff5a94179f66fa1165952ed170a95 Mon Sep 17 00:00:00 2001 From: xue <> Date: Sat, 22 Apr 2006 12:51:57 +0000 Subject: Modified default value rendering for TCheckBox. --- framework/Web/UI/WebControls/TCheckBox.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'framework/Web/UI/WebControls/TCheckBox.php') diff --git a/framework/Web/UI/WebControls/TCheckBox.php b/framework/Web/UI/WebControls/TCheckBox.php index c3e5e640..ff7f57f7 100644 --- a/framework/Web/UI/WebControls/TCheckBox.php +++ b/framework/Web/UI/WebControls/TCheckBox.php @@ -307,12 +307,11 @@ class TCheckBox extends TWebControl implements IPostBackDataHandler, IValidatabl { $attributes=$this->getViewState('InputAttributes',null); if($attributes && $attributes->contains('value')) - $value=$attributes->itemAt('value'); + return $attributes->itemAt('value'); else if($this->hasAttribute('value')) - $value=$this->getAttribute('value'); + return $this->getAttribute('value'); else - $value=''; - return $value===''?$this->getUniqueID():$value; + return ''; } /** @@ -341,7 +340,8 @@ class TCheckBox extends TWebControl implements IPostBackDataHandler, IValidatabl if($clientID!=='') $writer->addAttribute('id',$clientID); $writer->addAttribute('type','checkbox'); - $writer->addAttribute('value',$this->getValueAttribute()); + if(($value=$this->getValueAttribute())!=='') + $writer->addAttribute('value',$value); if(($uniqueID=$this->getUniqueID())!=='') $writer->addAttribute('name',$uniqueID); if($this->getChecked()) -- cgit v1.2.3