Frank Kany wrote: > Good morning, > > I have a form with 5 fields. When I click "Save", 3 of the 5 fields > save to the database and the other 2 are saved as NULL. > > The form code is attached. > > The 2 fields that will not save are using collection_select. On the web > page I can click on each of the drop down boxes and select an item, but > for some reason they will not save to the database fields. > > Thank you, > > Frank
I think that :name, :comment, :active_flag values are stored in the params[:time_subtype] array because text_field, text_area and check_box are called on the form object. However your collection_select calls do not refer to the form, so they're not stored in params[:time_subtype], and if you update your object with params[:time_subtype] as parameter the :entity_id, :time_type_id are not found. With your code these values are accessible in params[:facility][:entity_id] and parms[:time_type][:id]. What attributes do these two form elements refer to ? -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

