Whoops! You're right!

<% form_for :lead,  :url => { :controller => 'channels', :action =>
"lead" }, :html => {:name => 'leadform'} do |f| %>
<%= f.label :origin %><br />
<%= f.select( "associate_id", Associate.find(:all,  :order =>
'associates.lastname ASC',  :conditions => ['deleted=0']).collect {|p|
[ p.to_s, p.id ]}, {:include_blank => ''}) %>

However, if I add in :

<% @lead.associate_id = @Up.associate_id %>

Nothing happens ? Additionally, I try making this statement in te
method of the controller which renders the partial that this view code
is in, again, nothing happens (i.e. it does not select the associate
in the select box)
--~--~---------~--~----~------------~-------~--~----~
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@googlegroups.com
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to