can any one help me or give a link ,how to use select field where options are from object,what i tried is
<%= f.select "subject","id ", Hash[@subject_final.collect{|p| [p['name'],p['id']]}],{:prompt => 'Select Subject'} %>where subject=>is select field name
in my case i get an error
ActionView::TemplateError (undefined method subject for #<Chapter:0xb6c36a5c>) @subject_final => [{"name"=>"11 A Bio groupMATHS", "id"=>9}, {"name"=>"9A 2011maths", "id"=>10}]
I went through this one form helper
subject, then that relationship needs to be defined on the model driving the form. – tadman Apr 19 '11 at 20:44