- Timestamp:
- 09/03/2007 02:45:06 PM (16 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/3.2-dev/framework/Web/UI/WebControls/TSlider.php
r2198 r2199 152 152 public function getValue() 153 153 { 154 return $this->getViewState('Value',0 );154 return $this->getViewState('Value',0.0); 155 155 } 156 156 … … 160 160 public function setValue($value) 161 161 { 162 $this->setViewState('Value', TPropertyValue::ensureFloat($value),0 );162 $this->setViewState('Value', TPropertyValue::ensureFloat($value),0.0); 163 163 } 164 164 … … 300 300 public function loadPostData($key,$values) 301 301 { 302 $value= $values[$this->getClientID().'_1'];302 $value=(float)$values[$this->getClientID().'_1']; 303 303 if($this->getValue()!==$value) 304 304 {
