角度材質選択ワークを角形選択のようにしたい。私はそれのいくつかを動作させましたが、1つの違いがあります。角度選択は、彼のモデルで彼のリストにないオブジェクトを持つことができます。角度材選択が角度のように動作するようにする
Fiddle for better understanding
<ui-select ng-model="current_item" name="emitter" autocomplete="off" theme="select2" style="max-width:385px;">
<ui-select-match placeholder="Select Item" title="{{$select.selected.name}}">{{$select.selected.name}}</ui-select-match>
<ui-select-choices repeat="item in list" refresh="refresh($select.search)" refresh-delay="0">
<small>{{item.name}}</small>
</ui-select-choices>
</ui-select>
あなたが見ることができるように、角度のUI選択がNGモデルTEST4でさえ厳しいです、それはリストに載っていないですが、それはまさに私が選択した角度材料に必要な動作です。それを行う方法はありますか、私は角度uiを選択して立ち往生ですか?
技術的に 'test4'は' ui-select'のように見えますが、リストにはありません。オプションリストにないモデルオブジェクトを追加できますか? '$ scope.list = {{name:" test1 "}、{name:" test2 "}、{name:" test3 "}、$ scope.current_item];あるいはジェネリック指令が必要です。 – bhantol