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 just moved to Ember 1.0 pre and I am facing issues with EM.handlebars.registerHelper

I am using the handlebars helper defined here :

Ember.Handlebars.registerHelper('editable', function(path, options) {
  options.hash.valueBinding = path;
  return Ember.Handlebars.helpers.view.call(this, App.EditField, options);
});

Like that :

{{#view App.CardView}}
  {{#with view.content}}
    {{editable name}}
  {{/with}}
{{/view}}

But instead of the value of name, I got empty and moreover the field is not editable.

If I write

{{#view App.CardView}}
  {{#with view.content}}
    {{name}}
  {{/with}}
{{/view}}

The name attribute is displayed.

Any thought ?

Thanks

share|improve this question
1  
Can you create a jsFiddle of your example? – Rajat Aug 28 '12 at 7:21

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.