Skip to content

Instantly share code, notes, and snippets.

@ppcano
Created December 6, 2011 15:05
Show Gist options
  • Save ppcano/1438484 to your computer and use it in GitHub Desktop.
Save ppcano/1438484 to your computer and use it in GitHub Desktop.
class name bindings
ItemView = SC.View.extend({
//classNameBindings: ['selected'],
classNameBindings: ['disabled'],
// applyViewLogic is not delegates to observes because ItemView is handled by CollectionView
init: function(){
this._super();
this._applyViewLogic();
},
_applyViewLogic: function(){
var content = get(this, 'content');
//console.log(content);
var isDisabled = ( get(content, 'disabled') === '1' ) ? true: false;
set(this, 'disabled', isDisabled );
// that could be moved to controller
var total = get(content, 'pvot')-get(content, 'nvot');
set(this, 'total', total);
}
});
TestView.View1.View = SC.ContainerView.extend({
//elementId: 'scroller',
classNames: ['scroller'],
childViews: ['scrollableView'],
scrollableView: SC.CollectionView.extend({
tagName: 'ul',
classNames:['listview'],
//contentBinding: "TestView.View1.tracksController",
contentBinding: "TestView.tracksController.sortedContent",
itemViewClass: ItemView.extend({
template: SC.Handlebars.compile( ' {{content.title}} || {{content.pvot}} || {{content.nvot}} || {{total}} ' )
})
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment