I am trying to get the ember routing working following the guide at http://emberjs.com/guides/outlets/#toc_transitions-and-urls I am on 1.0.pre
However I am getting stuck on defining the action within my templatebar.
The error happens when I try to click on Read Article from my template bar it tries to find a showPost function inside my view as opposed to using the router, what target am I supposed to use for target? Also am I setting the context correctly?
Error: assertion failed: Target <(subclass of Ember.View):ember337> does not have action showPost
EDIT: Project with error available at https://github.com/newtonianb/todomvc/tree/master/dependency-examples/emberjs_require
itemViewClassdoes not have any context (i.e. controller). So the view can't find the router. Could you try setting thecontrollerproperty of eachitemViewClassinstance to thecontrollerof theCollectionView? – louiscoquio Sep 24 '12 at 15:36