how to pass parameters to Handlebars helper? What's the difference between options.hash & options.data
Here's a typical Handlebars helper: Ember.Handlebars.helper 'myHelper', (value, options) -> ... According to this protip you can pass hash to Handlebars helpers. I looked over the source and found out that it provides both options.hash and options.data . I'm a bit confused as this wouldn't work as expected: {{#with controllers.currentCardCategory}} {{#each property in cardProperties}} <td class="td">{{cardProperty this property=property.symbol}}</td> {{/each}} {{/with}} this is the current Card record. Here I got property.symbol as string But this worked: {{#with controllers