I admit to being a bit stumped on this, since I've been doing rails for some time.
I'm trying to get an array of values in params[] from a multiple-select combobox.
This is rails 2.3.5 and ruby 1.8.6 (I know, I know).
The generated html is:
<select id="shows_" multiple="multiple" name="shows[]">
<option value="5">A Grand Night For Singing (Jan - Feb 2007)</option>
<option value="6">Who's Afraid of Virginia Woolf? (Mar - Apr 2007)</option>
...more options...
</select>
Note that the select tag's name ends in '[]' and the 'multiple' option is set.
If I set a debug breakpoint at the top of the controller action and look at params[:shows]:
(rdb:62) p params[:shows]
["17,18,19"]
The captured values are correct, but i had expected ["17","18","19"], I.E. an array of N elements rather than an array of a single element consisting of N comma-separated values.
I could easily code around this, but I'm baffled since I'm pretty sure this used to work and the behavior I'm expecting is the documented behavior. Any ideas?