I am trying to bind an Ember object to a property in an ArrayController. The properties of this object will be used for all objects added to the ArrayController in calculations.
Here’s a simple example of what I’m seeing: http://jsfiddle.net/EjDFS/2/
As you can see, the object that I am trying to bind is undefined within the array controller. I do not want to bind this object directly to the objects that are added to the array controller.
Thanks for taking the time to look at this – much appreciated!
Its undefined because when it fires, it hasn’t completed its run loop.
and as for
App.ObjectOne.param3, you need to usethis.get('param1')instead ofparam1, the same withparam2http://jsfiddle.net/EjDFS/4/