web-dev-qa-db-ja.com

ui-selectで選択したオプションをクリアangular

誰でも角度でUI選択ボックスの選択値をクリアする方法を知っていますか?

Selectboxに小さなxが表示されるselect2の機能が必要です。 select2が取得したallow-clearメソッドを持っているように見えません。

53
ffffff01

Select2テーマを使用している場合、これを行うallow-clearディレクティブにはui-select-matchオプションがあります。右側にxが表示され、クリックしてクリアできます。 https://github.com/angular-ui/ui-select/wiki/ui-select-match

簡単な例:

<ui-select-match allow-clear="true" placeholder="Select or search a country in the list...">
  <span>{{$select.selected.name}}</span>
</ui-select-match>

作業例: http://plnkr.co/edit/DbbUE68QlNLjx97pBZ56?p=preview

現在、これはbootstrapまたはselectizeテーマを使用して機能しません。

100
exiadbq

選択を表示するときに小さなXボタンを追加できます。

<ui-select-match placeholder="Select or search a country in the list...">
  <span>{{$select.selected.name}}</span>
  <button class="clear" ng-click="clear($event)">X</button>
</ui-select-match>

次に、クリックイベントのバブリングを停止し、オープンイベントをトリガーします。そして、選択したモデルを上書きしてフィールドをクリアします。

$scope.clear = function($event) {
   $event.stopPropagation(); 
   $scope.country.selected = undefined;
};

これがplnkrです。 http://plnkr.co/edit/qY7MbR

34
Nic128

ブートストラップを使用している場合、設計の観点から、fa-removeアイコンも使用できます。

さらに、使いやすさの観点から、削除アイコンを左に揃えることもできます。

JS:

<ui-select-match placeholder="Select or find...">
    <button class="clear-btn" ng-click="clear($event)">
        <span class="fa fa-remove"></span>
    </button>
    <span class="clear-btn-offset">{{$select.selected}}</span>
</ui-select-match>

CSS:

.select2 .clear-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px 10px;
    position: absolute;
    left: -2px;
    top: 1px;
}

.clear-btn-offset {
    position: absolute;
    left: 25px;
}

指令コードについて:

$scope.clear = function($event) {
   $event.stopPropagation();
   // Replace the following line with the proper variable
   $scope.country.selected = undefined;
};
6
Igor Lino

注:タグ付けとtagging-label = "false"を使用した場合、allow-clear機能は機能しません。

カスタムクリア機能

HTMLコード

<ui-select-match placeholder=”Enter table…”>
 <span>{{$select.selected.description || $select.search}}</span>
 <a class=”btn btn-xs btn-link pull-right” ng-click=”clear($event, $select)”><i class=”glyphicon glyphicon-remove”></i></a>
</ui-select-match>

コントローラーアクションコード

function clear($event, $select){ 
 //stops click event bubbling
 $event.stopPropagation(); 
 //to allow empty field, in order to force a selection remove the following line
 $select.selected = undefined;
 //reset search query
 $select.search = undefined;
 //focus and open dropdown
 $select.activate();
}
1
Dinesh Vaitage