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 am having some issues getting emberjs to pick up and render a handlebars template file. I think it may be a configuration issue since i get the following error in my browser's debug console

Error: <(subclass of Welcome.LoginView):ember166> - Unable to find template "login_view".

I have the following code in emberjs code in my app.js file

Welcome = Ember.Application.create({
});

Welcome.LoginView = Ember.View.extend({
    templateName: 'login_view',

    didInsertElement: function() {
    },

    willDestroyElement: function() {
    },

    toggleForgotPasswordView: function(event) {
       $("#forgot-password-form-container").toggle();
       $("#login-form-container").toggle();

       return false;
    }
});

I also have the following snippet in my index.html file

<script type="text/x-handlebars" >
  {{view Welcome.LoginView}}
</script>

Finally relative to the app.js file i have the file templates/login_view.handlerbars, which contains the following snippet

<form class="form-inline">
  <fieldset>
 <input type="text" name="email" placeholder="email address">
 <input type="password" name="password" placeholder="password">
 <button class="btn btn-primary" type="submit">Sign In</button>
 <span class="loading"></span>
<label class="remember-me checkbox"><input type="checkbox"/> Remember Me</label>
<a href="#" id="forgot-password-link" class="forgot-password" {{action "toggleForgotPasswordView" on="click"}}>Forgot password?</a>
  </fieldset>
</form>

The error seems to indicate that it can't locate the handlebars template. When i look at the generated HTML i don't see the above form on the page.

Can anyone shed some light on what i am doing wrong.

share|improve this question

1 Answer

From your question I assume that you are NOT using some tools which precompile a handlebars template for you, like interline/ember-skeleton. Ember does look for templates at the Ember.TEMPLATES array - and does not automatically look for templates located at templates/ and ending with .handlebars - so unless you are using some tools which do this step for you, you have to do this on your own.

This may sound complicated but it's as easy as the following:

Ember.TEMPLATES["login_view"] = Ember.Handlebars.compile('TEMPLATE CODE');

You have to make sure though that the template is added before you want to use it.


Another solution would be to inline your template into your index.html and add a data-template-name="login_view" attribute to the script tag, see http://jsfiddle.net/pangratz666/NGZba/:

<script type="text/x-handlebars" data-template-name="login_view"  >
  <form class="form-inline">
    ...
  </form>
</script>

If your project has more templates I would suggest to use the above mentioned ember-skeleton or similar libraries, see Buildtools wiki page.


Related question: Is it possible to load an handlebars template via an ajax call?

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.