Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm having trouble getting this to work. I want to use nested attributes in a form, but before I do that I need to be able to build a person (administrator) from event, like so:

@event = Event.new
@event.administrator.build
#=> undefined method 'build' for nil:NilClass

class Event < ActiveRecord::Base
  #start_date, end_date, title
  has_one :administrator, :class_name => "Person" 
  has_one :account_manager, :class_name => "Person"
  accepts_nested_attributes_for :administrator
end

class Person < ActiveRecord::Base
  #fname, lname, bday
  belongs_to :event
end

Any help?

share|improve this question

1 Answer

up vote 2 down vote accepted

I think you need to use build_administrator instead...

@event = Event.new
@event.build_administrator

This is because you have a 'has_one' association, therefore there is no association proxy created by default.

share|improve this answer
Awesome thank you! – recursive_acronym Sep 29 '11 at 15:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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