通过 valueBinding 将值设置为 ember 单选按钮后,调用 Ember.run.end() 将更改的值反映在 DOM 中。
但请参阅以下错误。错误:未捕获的类型错误:无法调用 null wt 的方法 'prev' 是这里的问题
//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");