Hello there.  I am following a tutorial with rails 2.1 and I have come
across a problem where

<%= f.label :artist_id %><br />
    <%= f.select_tag(:artist_id, options_for_select([['choose one',
'']] + @artists.collect {|art| [art.name, art.id]}, @album.artist_id))
%> (Old artist info:<%= @album.artist_old%>)

gives

undefined method `select_tag' for #<ActionView::Helpers::FormBuilder:
0x21f86f8>

however, when I just do a select, I can get a drop down menu that is
just much uglier
 <option value =3>Coldplay</option> ect...

Any suggestions?

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to