I got a strange Problem here. I want to catch an Action inside a rendered Ember.CollectionView, in the "ParentView".
{{#collection contentBinding="view.content"}}
<a href="#" {{action insideCollection target="parentView">{{view.content}}</a>
{{/collection}}
but the parentView inside a CollectionView is still a Subclass of a View, and not the ParentView itself (in my Example the ApplicationView). So, how can i catch the Handlebars-Action inside my ApplicationView?
Here is a fiddle to see the Problem by yourself: http://jsfiddle.net/smgMt/3/
Any Ideas?