Prado\Web\UI\ActiveControls\TInPlaceTextBox::setText PHP Method

setText() public method

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