> > This code passes does not pass the "active" param in the select_tag: > <% form_for :project do |f| -%> > <label for= "name">Project Name</label> > <%= f.text_field :name %> > <label for= "active">Active</label> > <%= select_tag "active", options_for_select( ["Yes", "No"] )%>
<%= select_tag "project[active]",options_for_select( ["Yes", "No"]%> > <%= submit_tag 'Submit' %> > <%= form_tag %> > <% end -%> > -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

