search for: complete_task

Displaying 1 result from an estimated 1 matches for "complete_task".

Did you mean: complete_tasks
2006 Jan 04
2
Problem with multiple collection_select
I am trying to allow the user to select more than one value from a selection list. Here is the code: <%= collection_select(:transition, :complete_tasks, @permissions, :id, :path, "", {:size => "10", :multiple => true} ) %> The multiple HTML option is supposed to allow multiple selections and, in fact, it does, although the HTML generated show the attribute as multiple=multiple when it should be just multiple. The...