Prado\Web\UI\WebControls\TButton::getText PHP Méthode

getText() public méthode

public getText ( ) : string
Résultat string caption of the button
    public function getText()
    {
        return $this->getViewState('Text', '');
    }

Usage Example

Exemple #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()->setAttribute($this, 'value', $value);
     }
 }