Fixes #5735: Added yii\bootstrap\Tabs::renderTabContent to support manually rendering tab contents

This commit is contained in:
Qiang Xue
2014-10-24 07:54:48 -04:00
parent b23126908f
commit 2544e86d2c
4 changed files with 8 additions and 1 deletions

View File

@ -102,7 +102,9 @@ class Tabs extends Widget
*/
public $navType = 'nav-tabs';
/**
* @var boolean whether the tab-content container should be rendered.
* @var boolean whether to render the `tab-content` container and its content. You may set this property
* to be false so that you can manually render `tab-content` yourself in case your tab contents are complex.
* @since 2.0.1
*/
public $renderTabContent = true;