valueBinding で ember ラジオ ボタンに値を設定した後、Ember.run.end() を呼び出して、変更された値を DOM に反映します。
しかし、以下のエラーを参照してください。Error: Uncaught TypeError: Cannot call method 'prev' of null wt's this issue
//Doing value binding here
App.radioController.set('content', App.createRadioModel.create({ id:1 }));
Ember.run.end();
//Doing some css changes as soon as the value is updated onto the radio button.
Ember.$(".view-radio").removeClass("modified","delete");