Skip to content

Instantly share code, notes, and snippets.

@cloke
Last active December 10, 2015 21:28
Show Gist options
  • Save cloke/4495264 to your computer and use it in GitHub Desktop.
Save cloke/4495264 to your computer and use it in GitHub Desktop.
MyApp.MyCollectionView = Ember.CollectionView.create({
tagName: 'ul'
contentBinding: 'some array controller',
itemViewClass: Ember.View.extend({
tagName: 'li'
template: Ember.Handlebars.compile("the letter: {{view.content}}")
})
});
in your tempate:
{{view MyApp.MyCollectionView}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment