A bit delayed, but it should work.
<%= form_for(@post) do |f| %> <%= f.label :tag_list %> <%= f.check_box :tag_list, { :multiple => true }, 'politics', nil %> <%= f.check_box :tag_list, { :multiple => true }, 'science', nil %> <%= f.check_box :tag_list, { :multiple => true }, 'social', nil %> <%= f.check_box :tag_list, { :multiple => true }, 'sports', nil %> <% end %>
Adam eberlin
source share