Multiple selects in single view

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.

Here is the page source it generates. I don’t see anything
significantly different between the three multi-selects.

Technicians:
Albert Martinez Chris Sanchez Luis Arvizu Orlando Garcia Richard Martinez Thao Dang

Computer Models:
Dell GX240

Licensed Software:
VIZ

On Feb 19, 2:34 pm, “[email protected][email protected]