Prado\Web\UI\WebControls\TTableRow::renderContents PHP Method

renderContents() public method

Renders body contents of the table row
public renderContents ( $writer )
    public function renderContents($writer)
    {
        if ($this->getHasControls()) {
            $writer->writeLine();
            foreach ($this->getControls() as $cell) {
                $cell->renderControl($writer);
                $writer->writeLine();
            }
        }
    }