I can access an item from a template with view.content, but I can't seem to pass the item to a helper, see http://jsfiddle.net/jUQ3Y/:
Handlebars:
<script type="text/x-handlebars">
{{collection contentBinding="App.itemController" itemViewClass="App.AnotherView"}}
</script>
JavaScript:
App = Ember.Application.create();
App.itemController = Ember.ArrayController.create({
content: [Ember.object.create({name: 'XYZ'})]
});
Handlebars.registerHelper("show-icon", function(item) {
if (item.name != 'screenshot') {
return '<i class="icon-globe"></i>'
} else {
return '<i class="icon-screenshot"></i>'
}
});
App.AView = Ember.View.extend({
template: Ember.Handlebars.compile('{{view.content.name}}') // shows "XYZ" as expected
});
App.AnotherView = Ember.View.extend({
template: Ember.Handlebars.compile('{{view.content.name}} {{show-icon view.content}}') // passes the string "view.content" to the helper, not the object with name 'XYZ'
});