with acts_as_taggable_on, how can I have a maximum number of tags?

link|improve this question

feedback

1 Answer

I use the following validations in my Post model

class Post < ActiveRecord::Base
  ...
  acts_as_taggable_on :categories
  ...
  validates_presence_of :category_list,
                        :message => "Choose at least 1 category"
  validates_size_of     :category_list,
                        :maximum => 4,
                        :message => '4 categories maximum'
  ...
end

As seen in Ryan Bate's tutorial:

class PostssController < ApplicationController
  ..
  def update
    @post = current_user.posts.find(params[:id])
    params[:post][:category_list] ||= []
  end
  ..
end

Categories select partial:

<% Category.roots.each do |c| %>
        <ul>
            <li>
            <%= check_box_tag "post[category_list][]",
                              c.id, @post.category_list.include?(c.id.to_s)%>
            <%= c.name %>
            </li>
        </ul>
<% end %>

BTW, I use catgeory_list as an array of categories ID's, so a Post category_list may look like:

> p = Post.first
...
> p.category_list
["10", "7", "8"]
> p.category_list.map { |c| Category.find(c.to_i).name }
["Cats","Dogs","Plants"]

Hope it helps

link|improve this answer
1  
I use Rails 2.3, and I followed Ryan Bate's screencast on HABTM Checkboxes: railscasts.com/episodes/17-habtm-checkboxes – benoror Apr 26 '11 at 17:16
thanks -- will this work in Rails 3? – Angela Apr 26 '11 at 18:49
Hi, I tested this, it looks like it limits the number of characters, not the number of tags...... – Angela Apr 29 '11 at 15:07
It depends of how you wrote your views, se my edits. – benoror Apr 29 '11 at 15:34
feedback

Your Answer

 
or
required, but never shown

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