I added the example application. http://jsfiddle.net/x82dr/12/
Js:
App = Ember.Application.create({
autoinit: false,
ready: function() {
App.get("router.applicationController.books").pushObject(App.Book.create({
name: "book 1"
}));
App.get("router.applicationController.books").pushObject(App.Book.create({
name: "book 2"
}));
App.get("router.applicationController.books").pushObject(App.Book.create({
name: "book 3"
}));
}
});
App.ApplicationController = Ember.Controller.extend({
books: Em.A(),
selectedBook: null
});
App.ApplicationView = Ember.View.extend({
templateName: 'application',
selectBook: function(event) {
var book = event.context;
App.get("router.applicationController").set("selectedBook", book);
},
cancel: function(event) {
alert(event.context);
}
});
App.Router = Ember.Router.extend({
root: Ember.Route.extend({
index: Ember.Route.extend({
route: '/'
})
})
});
App.Book = Em.Object.extend({
name: null
});
App.initialize();
Template:
<script type="text/x-handlebars" data-template-name="application">
{{#each book in books}}
<a {{action selectBook book target="view"}} href="#">select {{book.name}}</a><br />
{{/each}}
<hr />
Selected Book: {{selectedBook.name}}
<br />
<a {{action cancel selectedBook target="view"}} href="#">cancel selected book</a>
</script>
Select one of the books. You will see that name of the book will be displayed. But the "cancel selected book" link does not work.
I think the problem is context of the action helper does not change when a book is selected.
How do I implement an action helper which has a changing context? Or is it a bug?