rails select_tag selected value
Remove the :selected=>
part.
Syntax:
options_for_select(@options, @selected_options)
Usage:
options_for_select(1..5, 3) # creates a range 1..5 , with 3 as selected by default
Documentation
<%= select_tag "page_type", options_for_select(@page_type.collect{ |u| [u.data_name, u.id]}, :selected=>@page.page_type), {:class =>"select_combobox",:onchange=>"reset_form(this.id,'page_type_msg');"} %>
this works for me :)
Just to clarify @M Tariq Aziz answer:
Your code should look like this:
@yrs =[2011,2010,2009,2008]
<%= select_tag 'year', options_for_select([["Select" , "" ]] + @yrs.to_a,2011) %>
The general format for select tag is:
<%= select_tag 'year', options_for_select(:collection, :selected) %>