ApplicationController を IndexController にバインドしようとしています。これが私の jsfiddleです。要約すると、ここに私がアプリケーションコントローラーに持っているバインディングがあります
indexIsClickedBinding: "App.indexController.isClicked",
isIndexClicked: function() {
alert("its changed to " + this.get("indexIsClicked") ) ;
}.observes('indexIsClicked'),
そのため、IndexController のisClicked値が変更されても、indexIsClickedBinding は何もしません。私のコードで何か提案が間違っていますか?
乾杯