Select_tag

Hi

I have this kind of problem. I have table called item and there is column called priority. So i have to do select tag for priority.

<td><b>Priority: </b></td> <% @item.priority = 3 %> <td><%= select_tag "item","priority",[1,2,3,4,5] %></td>

it gives an error undefined method `stringify_keys' for [1, 2, 3, 4, 5]:Array

Any ideas how to solve that ?

as you use it, you're most likely confusing select and select_tag to make the options from an array use options_from_collection_for_select

you'll find the details here: http://api.rubyonrails.org/classes/ActionView/Helpers/FormOptionsHelper.html#M001749

Thanks.