From 67ca28c06aaa2bbe973aa2de2173361c47b558a5 Mon Sep 17 00:00:00 2001 From: RomeroMsk Date: Fri, 24 Oct 2014 11:25:32 +0400 Subject: [PATCH] Fixes #5708 Fixes #5708 --- Tabs.php | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/Tabs.php b/Tabs.php index 2456e53..19e2a69 100644 --- a/Tabs.php +++ b/Tabs.php @@ -101,6 +101,10 @@ class Tabs extends Widget * @var string specifies the Bootstrap tab styling. */ public $navType = 'nav-tabs'; + /** + * @var boolean whether the tab-content container should be rendered. + */ + public $renderTabContent = true; /** @@ -167,14 +171,16 @@ class Tabs extends Widget } $linkOptions['data-toggle'] = 'tab'; $header = Html::a($label, '#' . $options['id'], $linkOptions); - $panes[] = Html::tag('div', isset($item['content']) ? $item['content'] : '', $options); + if ($this->renderTabContent) { + $panes[] = Html::tag('div', isset($item['content']) ? $item['content'] : '', $options); + } } $headers[] = Html::tag('li', $header, $headerOptions); } - return Html::tag('ul', implode("\n", $headers), $this->options) . "\n" - . Html::tag('div', implode("\n", $panes), ['class' => 'tab-content']); + return Html::tag('ul', implode("\n", $headers), $this->options) + . ($this->renderTabContent ? "\n" . Html::tag('div', implode("\n", $panes), ['class' => 'tab-content']) : ''); } /**