Do I need to specify oneWay binding for contentBinding in ArrayController?
For example:
App.PeopleCollectionView = Ember.CollectionView.create({
contentBinding: Ember.Binding.oneWay('App.peopleController.content')
});
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, you can specify a one-way binding in this case for a small performance increase, provided you will not be manipulating the
contentproperty of your people collection view.