Integrating bootstrap-select to work with Ember

后端 未结 4 2094
离开以前
离开以前 2021-02-04 17:37

I\'m trying to get bootstrap-select working with Ember.js. Something about Ember\'s management of view objects that prevents it from working as intended.

JSFiddl

4条回答
  •  孤城傲影
    2021-02-04 18:25

    I also added this to make select2 selection react to selectionBinding changing:

    _underlyingSelectionDidChange: Ember.observer((function() {
       this.$().select2('val', this.$().val().toString());
    }), "selection.@each");
    

提交回复
热议问题