On Apr 10, 3:12 am, Dave Castellano <[email protected]> wrote:
> Or is there a better way to highlight without using java script?
>
> --
> Posted viahttp://www.ruby-forum.com/.
CSS?
<% @books_by_subject.each do |book| %>
<% if book.title == session[:book][:title] %>
<tr id='highlighted-row'><td><a
href="/chapters<%= book.id %>"><%= book.title %></a></td> </tr>
<% else %>
<tr><td><a href="/chapters/<%= book.id %>"><%= book.title
%></a></td> </tr>
<% end %>
<% end %>
Then set the CSS style for #highlighted-row.
If you want to highlight multiple rows, you could use a class instead
of an ID to identify each row to be highlighted.
Paul
--
You received this message because you are subscribed to the Google Groups "Ruby
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en.