On Apr 3, 5:24 pm, WSzP <[email protected]> wrote: > Hello, > I got the following application:http://pastie.org/901794(I pasted > only the most relevant parts.) > It gives an error, while I try to submit the form, specifically: > ActiveRecord::AssociationTypeMismatch in BeiratkozasController#create > Modul(#51370284) expected, got String(#35011620) > > It also does this if I change html << radio_button(model_name, method, > option) to html << radio_button(model_name, method, option.id).
The parameters submitted via a form are always strings (or arrays / hashes containing strings) - You've ended up supplying a string where active record expected actual instances of objects. In this particular case you might try making your form helpers assign to collection_ids rather than collection Fred -- 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.

