Prado\Web\UI\ActiveControls\TActiveDataList::renderDataList PHP Метод

renderDataList() приватный Метод

Renders the repeater by writing a span tag with the container id obtained from {@link getContainerID()} which will be called by the replacement method of the client script to update it's content.
private renderDataList ( $writer )
    private function renderDataList($writer)
    {
        $writer->write('<span id="' . $this->getContainerID() . '">');
        parent::render($writer);
        $writer->write('</span>');
    }