I have products belonging to collections. A collection is just a name. Products have a collection_id.
In my _form view that is used for creation and edition of products, i'd like to have a drop down menu with the name of all collection.
Problem, it seems there is no select method affiliated to form.for and i am trying to use :
select(method, choices, options = {}, html_options = {})
from the doc but i do not understand it. I must write a methode to create a form? What are the choices, and the 2 options? Two parameters should be enough to populate an < option> tag.
How can I have a drop down menu alowing me to assign a collection through collection name to my product?