Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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'
});​
share|improve this question
I think you need to build a bound helper, see: techblog.fundinggates.com/blog/2012/08/… – sly7_7 Aug 29 '12 at 13:44

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.