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.
$("select").selectpicker() works okay for normal selects, and replaces Ember.Select views HTML but the Ember ones are broken.
The .ember-view class is what's responsible here and you can hack it to remove that class from the select and options to make bootstrap-select work, but then of course ember no longer pays attention to it, defeating the purpose.
Anyone understand EmberView enough to make this work? Should I try and override Ember.Select? Or does bootstrap-select need changing? I'm adrift in a sea of source code.