Skip to content

Instantly share code, notes, and snippets.

@ppcano
Created December 14, 2011 15:24
Show Gist options
  • Save ppcano/1477009 to your computer and use it in GitHub Desktop.
Save ppcano/1477009 to your computer and use it in GitHub Desktop.
views embers
<script type="text/x-handlebars">
{{#collection App.ListView elementId="firstView" }}
{{content.name}}
{{/collection}}
</script>
<script type="text/x-handlebars">
{{#view App.ListView2 }}
{{/view}}
</script>
App.ListView = Em.CollectionView.extend({
tagName: 'ul',
classNames: ['listview'],
content: content
});
App.ListView2 = Em.ContainerView.extend({
elementId: 'wrapper',
childViews: ['child'],
child: Em.ContainerView.extend({
classNames: ['scroller'],
childViews: ['child'],
child: SC.CollectionView.extend({
tagName: 'ul',
classNames: ['listview'],
content: content,
itemViewClass: Em.View.extend({
template: Em.Handlebars.compile('{{#with content}}{{name}}{{/with}}')
})
})
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment