これは私が本当にやろうとしている何 http://jsfiddle.net/8haXN/7/インスタンス化されたEmberjsオブジェクトプロパティのバインディングを変更することはできますか?
App.president = Ember.Object.create({
name: "Barack Obama",
name2: "George Bush"
});
App.country = Ember.Object.create({
presidentNameBinding: 'App.president.name'
});
App.country.set('presidentNameBinding', 'App.president.name2');
App.country.presidentName //stil returns 'Barack Obama'
を動作していないよう別のArrayControllerからCollectionViewのcontentBindingを変更することです。それが可能か、それとも悪い考えですか?あなたが手動でこの方法をバインドする必要があります
感謝を参照してください。あなたの答えのためのhttp://jsfiddle.net/efPGF/1/ –