I have the following code in Ruby on Rails 3. What is the preferred way to set the class (or id) to the value of a variable, and output it?

<%= tag "td", :class => @priority_level %><%= @priority_level %></td>

Outputs: <td class="normal">normal</td>

Thanks.

link|improve this question

80% accept rate
feedback

2 Answers

up vote 5 down vote accepted

The content_tag helper is sometimes visually more appealing than intermixing Erb and HTML:

<%= content_tag(:td, @priority_level, :class => @priority_level) %>

There are also other templating options out there besides the default Erb.

Here's the equivalent in Haml :

%td{:class => @priority_level}= @priority_level

and Mustache:

<td class="{{priority_level}}">{{priority_level}}</td>

I think that both are easier on the eyes than Erb. If you're stuck in Erb-land, organizing your code into helper methods and partials as much as possible is a good way to keep Erb templates visually manageable.

link|improve this answer
feedback

Generally for this I would define the tag like this:

<td class="<%= @priority_level %>"><%= @priority_level %></td>

There's no reason to make Rails do more work than it really needs to do.

link|improve this answer
That just seemed a bit clunky and redundant...I thought maybe there is a better way... – B Seven Jun 21 '11 at 2:51
If you find this clunky and are looking for a more-code-like solution, you might find haml more to your taste. – Zabba Jun 21 '11 at 7:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.