In my route.hbs I have several components that have computed properties. In my controller I want to see the state of these computed properties. I can't two-way bind the values since they are computed properties. Is it possible to do get the instance of a component inside of a controller and inspect its values?
I have tried Ember.$(#) but this just returns the dom object.
ember
is designed at the first place. not only you can get components from controller; you cannot get sub-components from within a parent controller. I suspect you have serious design issues; I would highly recommend to review your design. – feanor07