Posted by matteoraggi on January 11, 2009 at 2:49am
3 followers
Jump to:
| Project: | Tabs (jQuery UI tabs) |
| Version: | 6.x-1.0 |
| Component: | User interface |
| Category: | support request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Issue Summary
where i can see at least a demo of this module online?
Comments
#1
I'd also be interested in seeing a demo. Is it similar to Quicktabs? ...at least in functionality? I like quicktabs, but it doesn't support certain things, like a calendar/view inside of a tab. A working demo would be great.
Thanks,
Kelly
#2
Here's an example of a manually implemented tabset within a tpl.php file:
<div id="tabs-comp" class="drupal-tabs" style="display: block"><ul class="ui-tabs-nav tabs primary">
<li id="comp-1" class=""><a href="#tabs-comp-1">FIGHTER POSTS</a></li>
<li id="comp-2" class=""><a href="#tabs-comp-2">FIGHTER COMMENTS</a></li>
<li id="comp-3" class=""><a href="#tabs-comp-3">FOLLOWING</a></li>
</ul>
<div id="tabs-comp-1" class="ui-tabs-panel">
<?php print views_embed_view('posts', 'page_1'); ?> </div>
<div id="tabs-comp-2" class="ui-tabs-panel">
<?php print views_embed_view('comment_views', 'page_1', $account->name);?>
</div>
<div id="tabs-comp-3" class="ui-tabs-panel">
<?php print views_embed_view('posts', 'page_3'); ?>
</div>
</div>
To see how this works in practice:
http://www.fairfoodfight.com/fighters/el-drag%C3%B3n
#3
This link look to be wrong now..