I have three multiple selects in a single view:
Technicians:
<%=
options_from_collection_for_select(@all_technicians, :id, :name,
@selected_technicians) %>
Computer Models:
<%=
options_from_collection_for_select(@all_computers, :id, :model,
@selected_computers) %>
Licensed Software:
<%=
options_from_collection_for_select(@all_licensed_programs, :id, :name,
@selected_licensed_programs) %>
The select lists populate with no trouble.
The problem I’m having is that only the first one works. After
creating an entry via the view the only join table that is populated
is sites_technicians. The other two are completely blank. Any hints,
advice, beratement etc. would be greatly appreciated.