Hi,
I am quite new to bootstrap.js but have been using jquery for years. I need
a component with custom behavior I have not found in bootstrap.
I need bootstrap based component which behaves and looks similar to tabs
component. I called it xtabs. The difference between a normal tabs
component and xtabs will be such that one can activate multiple content
panes, not just one at a time. Active content panes will show up in one
content area, stacked or laid out some other way, preferably self
organizing on activation. Html structure something like this:
<ul class="nav nav-pills">
<li class="active">
<a href="#resources_introduction_tab"
data-toggle="xtab">Introduction</a>
</li>
<li>
<a href="#resources_tracking_tab" data-toggle="xtab">Tracking</a>
</li>
<li>
<a href="#resources_news_tab" data-toggle="xtab">News</a>
</li>
</ul>
<div class="xtab-content">
<div class="xtab-pane active" id="resources_introduction_tab">
</div>
<div class="xtab-pane" id="resources_tracking_tab"> </div>
<div class="xtab-pane active" id="resources_news_tab"> </div>
</div>
Can someone advise me if something like this already exists or how to go
about implementing this component myself?
Thanks.
--
You received this message because you are subscribed to the Google Groups
"twitter-bootstrap" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.