You want to render a tab inside of a tab? Only way to do that is using a tab substitution in a Custom HTML field. See the below for substitution usage information.
If you mean the Nested usage you just need to use the Nested tab positions. Aside from that am unsure what you're referring to.
Kyle (Krileon) Community Builder Team Member Before posting on forums:
Read FAQ thoroughly
+
Read our Documentation
+
Search the forums CB links:
Documentation
-
Localization
-
CB Quickstart
-
CB Paid Subscriptions
-
Add-Ons
-
Forge
-- If you are a Professional, Developer, or CB Paid Subscriptions subscriber and have a support issue please always post in your respective support forums for best results!
-- If I've missed your support post with a delay of 3 days or greater and are a Professional, Developer, or CBSubs subscriber please
send me a private message
with your thread and will reply when possible!
-- Please note I am available Monday - Friday from 8:00 AM CST to 4:00 PM CST. I am away on weekends (Saturday and Sunday) and if I've missed your post on or before a weekend after business hours please wait for the next following business day (Monday) and will get to your issue as soon as possible, thank you.
-- My role here is to provide guidance and assistance. I cannot provide custom code for each custom requirement. Please do not inquire me about custom development.
The CB Forum tab is specifically designed to output like that. There's no functionality to do that. You can try constructing the HTML in a Custom HTML field, which may cause CB to bind to it like any other tab output. Example as follows.
Code:
<div class="cbTabs" id="cbtabsCUSTOM">
<ul class="cbTabsNav nav nav-tabs">
<li class="cbTabNav" id="cbtabnavCUSTOM1">Tab 1</li>
<li class="cbTabNav" id="cbtabnavCUSTOM2">Tab 2</li>
<li class="cbTabNav" id="cbtabnavCUSTOM3">Tab 3</li>
</ul>
<div class="cbTabsContent tab-content">
<div class="cbTabPane tab-pane" id="cbtabpaneCUSTOM1">
THIS IS TAB 1
</div>
<div class="cbTabPane tab-pane" id="cbtabpaneCUSTOM2">
THIS IS TAB 2
</div>
<div class="cbTabPane tab-pane" id="cbtabpaneCUSTOM3">
THIS IS TAB 3
</div>
</div>
</div>
Kyle (Krileon) Community Builder Team Member Before posting on forums:
Read FAQ thoroughly
+
Read our Documentation
+
Search the forums CB links:
Documentation
-
Localization
-
CB Quickstart
-
CB Paid Subscriptions
-
Add-Ons
-
Forge
-- If you are a Professional, Developer, or CB Paid Subscriptions subscriber and have a support issue please always post in your respective support forums for best results!
-- If I've missed your support post with a delay of 3 days or greater and are a Professional, Developer, or CBSubs subscriber please
send me a private message
with your thread and will reply when possible!
-- Please note I am available Monday - Friday from 8:00 AM CST to 4:00 PM CST. I am away on weekends (Saturday and Sunday) and if I've missed your post on or before a weekend after business hours please wait for the next following business day (Monday) and will get to your issue as soon as possible, thank you.
-- My role here is to provide guidance and assistance. I cannot provide custom code for each custom requirement. Please do not inquire me about custom development.