TabsOnRails is a simple Rails plugin for creating and managing Tabs. It provides helpers for creating tabs with a flexible interface.
If you ever had to create a tab-based navigation menu at least once, you perfectly know how much it can annoying. You have to create the menu, set active status in your controllers and reflect selection status in your view. TabsOnRails does all the boring stuff for you and let you focus on the customization.
Let me show you how it works.
Quick Start
In your template use the tabs_tag helper to create your tab.
<% tabs_tag do |tab| %> <%= tab.home 'Homepage', root_path %> <%= tab.dashboard 'Dashboard', dashboard_path %> <%= tab.account 'Account', account_path %> <% end %>
The example above produces the following HTML output.
<ul> <li><a href="/">Homepage</a></li> <li><a href="/dashboard">Dashboard</a></li> <li><a href="/account">Account</a></li> </ul>
The usage is similar to the Rails route.rb file. You create named tabs with the syntax tab.name_of_tab. The name you use creating a tab is the same you’re going to refer to in your controller when you want to flag the tab as active with current_tab.
class DashboardController < ApplicationController current_tab :dashboard end
Now, for any action defined in the DashboardController, the template will automatically render the following HTML code.
<ul> <li><a href="/">Homepage</a></li> <li><span>Dashboard</span></li> <li><a href="/account">Account</a></li> </ul>
Restricting current_tab scope
Off course, there are specific situations where you need to change current_tag only for some specific action in your controller.
The current_tab method understands all options you are used to pass to a Rails controller filter. In fact, behind the scenes this method uses a before_filter to set a special @current_tab variable. Taking advantage of Rails filter options, you can restrict a tab to a selected group of actions in the same controller.
class PostsController < ApplicationController
current_tab :admin
current_tab :posts, :only => [ :index, :show ]
end
class ApplicationController < ActionController::Base
current_tab :admin, :if => :admin_controller?
def admin_controller?
self.class.name =~ /^Admin(::|Controller)/
end
end
Customizations
All your tabs belongs to you! Easily to understand, your tab structure might be slightly different that the default one. For example, you might want to flag the active tab with a current CSS class and preserve the link with a nice hover effect. Or perhaps your tab is an ordered list (<ol>).
No problem! The library is completely customizable using custom builders. See the documentation for further details on how to create and use a custom Tab Builder.
Here’s just a couple of examples created using custom builders.

Cool! How do I get the plugin?
The plugin source is available on GiHub, the project documentation and tickets are hosted on my Redmine installation.
The plugin is available both as a GEM and as a Rails plugin. See the documentation page to learn how to install it.



Hi Simone,
I just installed your plugin and folllowed the setup. After booting and fire-up my browser i get this message:
ActionView::TemplateError (wrong number of arguments (1 for 2)) on line #1 of pages/_menu.rhtml:
1:
2:
3:
Can you help me?
Thanks..
Grtz..remco
Post me the code you are using to build the menu.
I see you named the file .rhtml. Which version of Rails powers your project?
Thanks..for the quick reply…
Rails 2.3.2
ActionView::TemplateError (wrong number of arguments (1 for 2)) on line #1 of pages/_menu.rhtml:
1:
2:
3:
remco
my view
http://www.pastie.org/497612
The code seems to be right. If you look at the test, it is more or less the same piece of code.
Could you pastie the full exception backtrace? Did you change something or did you create any custom Builder?
i did not change anything…i just installed you’re plugin and followed the guide.
I am a newbie in RoR, but i think it has todo that the code (helper_file) is not loaded. So the tabs_tag object stays empty.
full error message:
http://www.pastie.org/497699
remco
Before I asked you which Rails version you are using and you answered Rails 2.3.2. However, it seems you are using Rails 2.1.0 instead (see actionpack-2.1.0).
My plugin requires Rails >= 2.2.0 due to some incompatible changes in the
concatmethod API from Rails 2.1.0 to Rails 2.2.0 and above.When i do this in my console
rails -v,
this is the output.
Rails 2.3.2
It means your most recent installed version is 2.3.2 but it doesn’t necessary mean you are using it.
Check your environment.rb file and your passenger configuration and make sure to use Rails 2.3.2. As I show you before, your project is running Rails 2.1.0.
Hi Simone,
How would I render a partial with your plugin? This might be a noob question, just can’t figure it out. Here’s my code…
‘readings’) %>
I’ve tried several variation of the render syntax. If I figure it out before you get to my question I post my solution.
Thanks,
Chris
Chris,
WordPress sanitized your code. Please use Pastie or a similar tool to show the code fragment.
Nice clean implementation of tabs in rails. I started using it instead of the more complex tabnav generator in Rails Widgets. However I’d prefer active tabs to remain clickable, allowing the user to return to the tab link from nested pages.
Hi Maarten,
you can easily customize the behavior creating a custom builder.
In your case, simply extend TabsBuilder and overwrite tab_for.
class MyTabsBuilder < TabsOnRails::Tabs::TabsBuilder def tab_for(tab, name, options) content = @context.link(current_tab?(tab), name, options) do @context.content_tag(:span, name) end @context.content_tag(:li, content) end endYes indeed. I did the following.
def tab_for(tab, name, options)
content = @context.link_to(name, options)
if current_tab?(tab)
@context.content_tag(:li, content, :class => ‘active’)
else
@context.content_tag(:li, content)
end
end
Thanks again.