setText() public method

Sets the text caption of the checkbox.
public setText ( $value )
Ejemplo n.º 1
0
 /**
  * Updates the button text on the client-side if the
  * {@link setEnableUpdate EnableUpdate} property is set to true.
  * @param string caption of the button
  */
 public function setText($value)
 {
     if (parent::getText() === $value) {
         return;
     }
     parent::setText($value);
     if ($this->getActiveControl()->canUpdateClientSide()) {
         $this->getPage()->getCallbackClient()->update($this->getDefaultLabelID(), $value);
     }
 }