Prado\Web\UI\ActiveControls\TInPlaceTextBox::addAttributesToRender PHP Метод

addAttributesToRender() защищенный Метод

Ensure that the ID attribute is rendered and registers the javascript code for initializing the active control.
protected addAttributesToRender ( $writer )
    protected function addAttributesToRender($writer)
    {
        //calls the TWebControl to avoid rendering other attribute normally render for a textbox.
        TWebControl::addAttributesToRender($writer);
        $writer->addAttribute('id', $this->getLabelClientID());
        $this->getActiveControl()->registerCallbackClientScript($this->getClientClassName(), $this->getPostBackOptions());
    }