0

angular-formlyフィールドタイプの助けを借りて使用されるui-select要素があります。次のような定義があります。

<ui-select ng-model="model[options.key]" theme="bootstrap" ng-required="{{to.required}}" ng-disabled="{{to.disabled}}" reset-search-input="false">,
   <ui-select-match placeholder="{{to.placeholder}}">,
        {{$select.selected[to.labelProp || \name\]}},
    </ui-select-match>,
    <ui-select-choices group-by="to.groupBy" repeat="option[to.valueProp || \value\] as option in to.options | filter: $select.search">,
        <div ng-bind-html="option[to.labelProp || \name\] | highlight: $select.search"></div>,
    </ui-select-choices>,
</ui-select>    

フィルタリングをオフにして、先行入力オプションをオフにする方法を探しているので、この要素は見た目が通常の選択のように機能します。

また、モデルを介して値をフィードする場合、クリックしてリストの選択を展開すると、値と同期しなくなります。モデルによって駆動される値ではなく、リストの最初の値が選択されます。そのための設定ですか?

4

1 に答える 1