Created
December 14, 2011 15:24
-
-
Save ppcano/1477009 to your computer and use it in GitHub Desktop.
views embers
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/x-handlebars"> | |
{{#collection App.ListView elementId="firstView" }} | |
{{content.name}} | |
{{/collection}} | |
</script> | |
<script type="text/x-handlebars"> | |
{{#view App.ListView2 }} | |
{{/view}} | |
</script> | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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