Displaying 1 result from an estimated 1 matches for "priorarr".
Did you mean:
priorart
2008 Aug 20
1
drop down
i am using following code for drop down.
<%= select_tag(''abc'',"<option></option>" +
options_from_collection_for_select(@priorarr,:Id,:Priority,:selected =>
params[:cs_priority])) %>
it is giving me one drop down with the values populated from the
"@priorarr" array.
Now i want to use this value inside my controller class.
i am using params[:cs_priority]...
but not working...
please help me...in reading v...