I am trying to have a multiple select box. select box will contain all the stores in the DB but the ones that the user belongs to will be selected.
I\'m half way
after a fair amount of trial and error the following worked for me:
<%= select_tag 'stores[]', options_for_select(@stores.map { |s| [s.store_name, s.store_id] }, @user.stores.pluck(:id)), multiple: true, size: 10 %>