I have a Model called Category and other Model Product. They have has_many and belongs_to relation. But code in my view

    <p><%= f.collection_select(:product, :category_id, Category.all, :id, :name)%>

is giving me

 undefined method `merge' for :name:Symbol

Any clue what is wrong with it?

link|improve this question

68% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Chances are you have something like this:

<%= form_for @product do |f| %>

Because f is already tied to product, you don't need to include it as your first argument, so it should just be:

<%= f.collection_select :category_id, Category.all, :id, :name %>

Or, you could not use f.:

<%= collection_select :product, :category_id, Category.all, :id, :name %>
link|improve this answer
That helped. Thank you. Could you explain conceptually what was wrong there. Help Appreciated. – Bhushan Lodha Nov 16 '11 at 6:27
Using form_for eliminates the need to put :product on every fields. Read this, it talks about how it expands the f. part: api.rubyonrails.org/classes/ActionView/Helpers/… – Dylan Markow Nov 16 '11 at 6:37
feedback

Your Answer

 
or
required, but never shown

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