/**
  * Sets the value for the select box
  * @param boolean $val
  * @return Staple_Form_CheckboxElement
  */
 public function setValue($val)
 {
     $this->selected = true;
     return parent::setValue($val);
 }
예제 #2
0
 public function setValue($insert)
 {
     $this->checked = true;
     return parent::setValue($insert);
 }