Using Select2 in Ember.js

ember.js, jquery-select2

Solution

{{view}} is deprecated in ember 2.0 +

I found this project that emberfies select2 into a component

ember install ember-select-2

or this one

ember install ember-select-guru

Edit 1:

There is also a more active nativley built one and you should probably use this one

ember install ember-power-select

repo

Problem

I'm really having difficulty integrating `select2` in ember. I want to transform this: ``` <input type="hidden" value=user /> ``` into a search input with ajax using `select2` and bind the selected result to the `user` attribute in model. Please help.

Original source