Prado\Web\UI\ActiveControls\TActiveHyperLink::setText PHP Метод

setText() публичный Метод

On callback response, the inner HTMl of the label is updated.
public setText ( $value )
    public function setText($value)
    {
        if (parent::getText() === $value) {
            return;
        }
        parent::setText($value);
        if ($this->getActiveControl()->canUpdateClientSide()) {
            $this->getPage()->getCallbackClient()->update($this, $value);
        }
    }