Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to make a multi select list box in Rails. My view code is:

<div>
  <%=nested_form_for(@allocation) do|builder|%>
    <%=builder.label :song_id, "Pick a song" %>

    <%=builder.select :song_id, options_for_select(
    Song.all.collect {|s| [ [s.title, s.artist].join(" by "), s.id ] }, 
    { include_blank: true, multiple: true, size: 5 }) %>

    <%=builder.submit "Add Song", class: "btn btn-large btn-primary" %>
  <% end %>
</div>

At the moment I just have the normal single selectbox but I want to convert this to a multiselect. Any pointers would be much appreciated. Thanks in advance

share|improve this question

3 Answers

up vote 1 down vote accepted

Often you need to use a select_tag however there are lots of different ways this can work depending on where you are getting the data from

    <%= select_tag '@Mymodel[myattribute][]', options_from_collection_for_select(SelectionModel, "id", "title", @Mymodel.myattribute), { :multiple => true, :size =>10 } %>

perhaps yours would look something like

        <%= select_tag '@allocation[song_id][]', options_from_collection_for_select(Song.all., "id", "title", @allocation.song_id), { :multiple => true, :size =>10 } %>

an example of this can be seen, here...

http://www.gilluminate.com/2007/02/15/best-way-to-do-multiple-select-combo-boxes-in-rails/

share|improve this answer

This seems to have worked in my case:

<%= builder.select(:song_id, options_for_select(@selections), {}, {multiple: true, size: 10}) %>
share|improve this answer

If you want to do by jquery the following link will help you

http://www.erichynds.com/jquery/jquery-ui-multiselect-widget/

share|improve this answer
Thank you but at the moment I'm looking to just use form_for. I've looked at other people's code and I'm not entirely sure what I'm doing differently... – TangoKilo Jul 12 '12 at 11:24
try to put multiple: true before include_blank: true . – urjit rajgor Jul 12 '12 at 11:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.