Prado\Web\UI\WebControls\TTabView::renderTabContent PHP Method

renderTabContent() protected method

By default, a hyperlink is displayed.
protected renderTabContent ( $writer )
    protected function renderTabContent($writer)
    {
        if (($url = $this->getNavigateUrl()) === '') {
            $url = 'javascript://';
        }
        if (($caption = $this->getCaption()) === '') {
            $caption = ' ';
        }
        $writer->write("<a href=\"{$url}\">{$caption}</a>");
    }