diff --git a/CHANGELOG.md b/CHANGELOG.md index 908056c..93c3ff4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ Yii Framework 2 bootstrap extension Change Log ----------------------- - Bug #5570: `yii\bootstrap\Tabs` would throw an exception if `content` is not set for one of its `items` (RomeroMsk) +- Enh #5735: Added `yii\bootstrap\Tabs::renderTabContent` to support manually rendering tab contents (RomeroMsk) 2.0.0 October 12, 2014 diff --git a/Tabs.php b/Tabs.php index 19e2a69..5443818 100644 --- a/Tabs.php +++ b/Tabs.php @@ -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;