I am still struggling both writing the controller and the actual form to be able to nest one form in another with an optional model?

I have Message which has many contacts

When submitting a message, I want to add a contact optionally.

I have this as an example:

      1 = simple_form_for Message.new, :remote => true do |f|
  2   #message_form
  3     = f.error_messages
  4     %p
  5       = f.input :account_name, :url => autocomplete_account_name_messages_path, :size => 40, :as => :autocomplete
  6     %p
  7       = f.input :topic, :required => true,
  8                 :input_html => {:size => 30}
 14 
 15     #add_contact_btn
 16       = link_to "Add Contact"
 17 
 18       #contact_form
 19         = f.simple_fields_for :contactd do |fc|
 20           = fc.input :email
 21           = fc.input :first_name
 22           = fc.input :last_name
 23  
 24     = f.submit 'Give'
 25     = f.submit 'Request'

For Message.rb model, I have the following:

has_many :contacts
accepts_nested_attributes_for :contacts, :reject_if =>:all_blank

Note: When I used :contacts in the simple_fields_for it didn't work, so it is singular. But the reverse for accepts_nested_attributess_for.

In my create controller for message, I included message.contacts.build

But right now I am still generating nil contacts.

Here is what I see passed as form data from google chrome:

message%5Baccount_name%5D:McKesson
message%5Btopic%5D:testing a contact
message%5Bbody%5D:testing this
sender_id:
receiver_id:23
message%5Bcontacts%5D%5Bemail%5D:888@gmail.com
message%5Bcontacts%5D%5Bfirst_name%5D:Ang
message%5Bcontacts%5D%5Blast_name%5D:Name
link|improve this question

What happens when I pull it out from the partial is that there are no input fields in the fc contact form – Angela Jul 12 '11 at 15:53
Show the code for the partial, and the render-line. – nathanvda Jul 15 '11 at 5:54
feedback

4 Answers

The correct method name is simple_fields_for (notice the plural)

Also, you need to keep the f. to call it on the simple_form object

link|improve this answer
Hmm...I get an error when I put the 'f.' -- but I put it in a partial, would that affect it? – Angela Jul 11 '11 at 23:43
also, do I need to do anything in the controller so that the contact is created? – Angela Jul 11 '11 at 23:43
Yes, if you put it inside a partial, you need to pass the local variable along, for example render "fields", :f => f. Since you have accepts_nested_attributes_for in the model, it should work fine if you just call @message.save in the controller – axelarge Jul 13 '11 at 15:22
ahhh.....thank you. I am getting closer to making this work, I hope. Let me give it a go and see....what types of associations will this work with? will it workw tih both belongs_to contact and has_many :contacts? – Angela Jul 13 '11 at 16:03
1  
do you have suggestions on how to debug this...I still am not creating contacts....must be something to do with the accepts_nested_attributes_for........ – Angela Jul 15 '11 at 4:05
feedback

I have a small project where I demonstrate how to use nested forms in simple-form, combined with cocoon (a gem I created to add/remove nested elements dynamically).

The project is on github.

Hope this helps.

link|improve this answer
thanks...I still don't get anything working -- no Contact is created :( – Angela Jul 15 '11 at 3:57
feedback

In my create controller for message, I included message.contacts.build

But right now I am still generating nil contacts.

Make sure you put in your Message.rb model the ability for it to accept the attributes too.

class Message < ActiveRecord::Base
    attr_accessible :contacts_attributes
    has_many :contacts
    accepts_nested_attributes_for :contacts

I know it doesn't answer your question fully but it may have just been this. When it comes to my project, it would return nil if i didn't include the :contacts_attributes, in my case it deals with products. Hope this helps even if I'm not using simple form as of now!

link|improve this answer
okay, let me try that...it's the first time I've seen it. If it were belongs_to :contact, would it be :contact_attributes? – Angela Jul 20 '11 at 5:02
I think it always has to be plural, so it has to be contacts_attributes. Did it work? Let me see your NEW and CREATE in your controller also. – Railslearner Jul 20 '11 at 16:49
okay, let me try it plural, thanks. – Angela Jul 21 '11 at 4:45
feedback

I faced similar issues working with nested forms. As suggested by JustinRoR you need to define attr_accessible: contacts_attributes.

You should be able to test the hash in the ruby console ( I am not sure if you have tried this). I suggest you to print the params[:message] and use this to create message from console like Message.new(params[:message]). (Note params[:message] is what you get by printing the params[:message] hash).

Once it works in console it should work like charm

link|improve this answer
thanks...what should the hash contain? Should it be message[contact][email]? – Angela Jul 20 '11 at 5:01
should look something like message =>{ account_name => "McKesson", topic => "testing a contact", body => "testing this", sender_id=> "", receiver_id => 23, "contacts_attributes"=>{ "0" => { email => 888@gmail.com, first_name => Ang, last_name => Name}}}. I am not sure how simple_forms deal with. Can you post logger.info(params[:message])'s output in your action and post it here so that we can inspect what simple form returns – naren Jul 20 '11 at 17:45
I suggest you could try this f.simple_fields_for "message[contacts_attributes][]" do |fc| to achieve the above hash – naren Jul 20 '11 at 18:22
thanks, let me try and I will repost the hash....I did not have contacts_attributes, before, it was just contacts => {} – Angela Jul 21 '11 at 4:45
feedback

Your Answer

 
or
required, but never shown

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