Prado\Web\UI\ActiveControls\TActiveLabel::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);
        }
    }