I have a habtm relationship between two models. Researchers and Universities. In my Researcher form how can I have the ability to select one University from list of existing Universities, and then click an add button to add a second (or more) university if that Researcher has a relationship with more than one?
Listing the item once is simple:
<%= collection_select(:researcher, :university_ids, University.order("name"), :id, :name %>
But it's not clear to me how to add more than one of these drop-downs to my form.
For example, by default the form has one drop-down listing the universities, and you can select one item from that list. But, if you'd like to add a second university, you can click "Add another" and that adds an identical drop-down list to the form with the same list of universities. From this list you can select another university that will also be associated with this researcher.