Created
December 6, 2011 15:05
-
-
Save ppcano/1438484 to your computer and use it in GitHub Desktop.
class name bindings
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
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