Yea I have a model with acts_as_taggable_on :styles, my styles taggings are passed in from an array of check boxes:

<% styles.each do |style|%>
  <%= check_box("tattoo", "style_list", {:multiple => true}, style, nil) %> <span class="tatto_style"><%= style %></span>
<% end %>

But I want to make sure that a user checks at least one style.

link|improve this question

64% accept rate
feedback

1 Answer

up vote 1 down vote accepted

In your model:

validates_presence_of :style_list

OR

validate :required_info

private

def required_info
  if( style_list.empty? ) 
    errors.add_to_base "Please choose a style"
  end
end
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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