EmberJs - IE8没有触发selectionBinding更新

时间:2012-03-23 21:46:19

标签: ember.js

以下代码在chrome中工作正常我在控制器中有一个observable属性

{{view Ember.Select prompt="--ANY--" 
selectionBinding="GWVideoApp.VideosController.category" 
contentBinding="GWVideoApp.TagsController.categories" 
optionLabelPath="content.title" 
optionValuePath="content.title"}}

控制器:

category: {},
categoryDidChange: function() { this.recalcTags(); }.observes('category'),

但似乎IE8没有发生更新

1 个答案:

答案 0 :(得分:1)

与Ember.Checkbox valueBinding有同样的问题。 将jQuery从1.6.4升级到1.7.2已经解决了这个问题