I'm learning to use Ember for develop web applications. Like you can see, my test code just shows a text in the view.
When I use ember-1.0.pre.js , it works fine, but when i change to ember-1.0.0-pre.2.js, the next error appears: Uncaught Error: "<TestApp.ApplicationView:ember177> - Unable to find template "application". With the last version of ember : ember-latest.js, there are no errors , but the text doesn't appear. In the last two cases , when I inspect the generated html, I realize that the handlebars scripts aren't being processed and remain with the html in browser.
In the Ember Blog, they list the changes between version, but apparently theres nothing related with my problem.
What should I change to this simple code works?.
HTML
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script src="http://code.jquery.com/jquery-1.7.2.js"></script>
<script src="http://cloud.github.com/downloads/wycats/handlebars.js/handlebars-1.0.rc.1.js"></script>
<script src="http://cloud.github.com/downloads/emberjs/ember.js/ember-1.0.pre.js"></script>
<!--<script src="http://cloud.github.com/downloads/emberjs/ember.js/ember-1.0.0-pre.2.js"></script>-->
<!-- <script src="http://cloud.github.com/downloads/emberjs/ember.js/ember-latest.js"></script>-->
<script src="app.js"></script>
</head>
<body>
<h1>Test Application</h1>
<script type="text/x-handlebars" data-template-name="application">
{{outlet}}
</script>
<script type="text/x-handlebars" data-template-name="test">
<h3> {{view.text}}</h3>
</script>
</body>
JavaScript:
TestApp = Ember.Application.create();
TestApp.ApplicationController = Ember.Controller.extend();
TestApp.ApplicationView = Ember.View.extend({
templateName: 'application'
});
TestApp.TestController = Ember.Controller.extend();
TestApp.TestView = Ember.View.extend({
text: 'This is a sample text',
templateName: 'test'
});
TestApp.Router = Ember.Router.extend({
root: Ember.Route.extend({
index: Ember.Route.extend({
route: '/',
connectOutlets: function(router) {
router.get('applicationController').connectOutlet('test');
}
})
})
});
TestApp.initialize();