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

link|improve this question

50% accept rate
If you're referencing subject, then that relationship needs to be defined on the model driving the form. – tadman Apr 19 '11 at 20:44
@tadman: I am not referencing subject should be <select name="subject"> this is what i am trying to achieve. – kracekumar Apr 20 '11 at 4:25
feedback

1 Answer

Looks like you're missing the subject method on the Chapter model.

Also the hash you're building inline in the select can be tidied up with...

options_from_collection_for_select(@subject_final, :id, :name)
link|improve this answer
Previously i missed to add a belongs_to in my model,after adding that form is rendered but select field is empty – kracekumar Apr 20 '11 at 6:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.