Sorry for the noob question but I am trying to convert a text_field to a select_tag and although I don''t get an error, the "active" param does not pass. 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"] )%> <%= submit_tag ''Submit'' %> <%= form_tag %> <% end -%> This code passes DOES pass the "active" param in the text_field: <% form_for :project do |f| -%> <label for= "name">Project Name</label> <%= f.text_field :name %> <label for= "active">Active</label> <%= f.text_field :active %> <%= submit_tag ''Submit'' %> <%= form_tag %> <% end -%> Can anyone point out where I''m going wrong? thanks atomic -- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On Mon, Feb 28, 2011 at 8:29 AM, A. Mcbomb <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> Sorry for the noob question but I am trying to convert a text_field to a > select_tag and although I don''t get an error, the "active" param does > not pass. > > 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"] )%> > <%= submit_tag ''Submit'' %> > <%= form_tag %> > <% end -%> > >use f.select, :active, [''Yes'', ''No'']> This code passes DOES pass the "active" param in the text_field: > <% form_for :project do |f| -%> > <label for= "name">Project Name</label> > <%= f.text_field :name %> > <label for= "active">Active</label> > <%= f.text_field :active %> > <%= submit_tag ''Submit'' %> > <%= form_tag %> > <% end -%> > > Can anyone point out where I''m going wrong? > thanks > atomic > > -- > 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit this group at > http://groups.google.com/group/rubyonrails-talk?hl=en. > >-- ------------------------------------------------------------- visit my blog at http://jimlabs.heroku.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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
> > 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.