Ember - custom child template

The latest build of Ember.

by dgeb

HTML

<script src="http://builds.emberjs.com/handlebars-1.0.0-rc.4.js"></script>
<script src="http://builds.emberjs.com/ember-latest.js"></script>
<script type="text/x-handlebars" data-template-name="application">
    <h1>ember-latest jsfiddle</h1>
    {{outlet}}
</script>
<script type="text/x-handlebars" data-template-name="index">
  <h2>Index Content:</h2>
  {{customListing childTemplateName="dashedNames"}}
</script>
<script type="text/x-handlebars" data-template-name="listing">
  <ul>
  {{#each}}
      {{view templateNameBinding="view.childTemplateName"}}
  {{/each}}
   </ul>
</script>
<script type="text/x-handlebars" data-template-name="dashedNames">
  <li>{{firstName}}-{{lastName}}</li>
</script>

CSS

h1 { font-size: 1.6em; padding-bottom: 10px; }
h2 { font-size: 1.4em; }
ul { padding: 15px; font-size: 1.4em; color: green; }

JavaScript

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

App.IndexRoute = Ember.Route.extend({
  model: function(){
      return [
          {firstName: 'Kris', lastName: 'Selden'},
          {firstName: 'Luke', lastName: 'Melia'},
          {firstName: 'Alex', lastName: 'Matchneer'}
      ];
  }
});

App.NameListingView = Ember.View.extend({
    templateName: 'listing'
});

Ember.Handlebars.helper('customListing', App.NameListingView);