search for: show_tagged_with

Displaying 1 result from an estimated 1 matches for "show_tagged_with".

2006 Apr 28
1
acts_as_taggable help
Ahoy, having a bit of difficulty w/ the acts as taggable GEM. I was able to create a tagcloud, but now i want to filter items by tags. in my controller i have def show_tagged_with <-- snip snip --> @items = Item.find_tagged_with( :any => params[:tag_name]) @categories = Category.find_all @tag_name = params[:tag_name] @tagged_items = Item.tags_count(:limit => 100) end IN the VIEW <% @items.each do |item| %> <%= render :par...