I've just started working with the acts_as_taggable gem. Really liking it so far, but I am a bit unclear about how to use this gem with a form.

class Photo < ActiveRecord::Base
  acts_as_taggable_on :tags
end

In my form for Photos I am trying to implement a series of checkboxes for the user to assign tags to their photo:

<%= f.label :tag_list %>
<%= f.check_box :tag_list, "landscape" %>
<%= f.check_box :tag_list, "people" %>

When viewing the form I get this error:

NoMethodError in Photos#edit
...line #19 raised:

undefined method `merge' for "landscape":String
Extracted source (around line #19):

18:     <div class="float_tag">
19:       <%= f.check_box :tag_list, "landscape" %>

Any thoughts as to how I should create my form?

link|improve this question

79% accept rate
feedback

1 Answer

up vote 1 down vote accepted

I'm assuming your <form> looks something like this:

<%= form_for(@photo) do |f| %>
  <%= f.label :tag_list %>
  <%= f.check_box :tag_list, "landscape" %>
  <%= f.check_box :tag_list, "people" %>
<% end %>

You should change up your f.checkbox lines a bit:

<%= form_for(@photo) do |f| %>
  <%= f.label :tag_list %>
  <%= f.check_box :tag_list, { :multiple => true }, 'landscape', nil %>
  <%= f.check_box :tag_list, { :multiple => true }, 'people', nil %>
<% end %>

Which will post something like this when submitted (with only people selected, for example):

{ :post => { :tag_list => ['', 'people'] } }
link|improve this answer
Yup, that did the trick. Thank you very much! – Tony Beninate Oct 9 '11 at 11:55
Kinda wish I understood why your answer is right though - Is there any documentation on this? Their read me doesn't go into that detail. – Tony Beninate Oct 9 '11 at 16:52
feedback

Your Answer

 
or
required, but never shown

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