6
dropdown list
とui-select
があります。ドロップダウン値ui-select
の値に基づいて値はバインドされています。その特定の値を直接ui-select
に貼り付けると、選択されたものとして表示されます。 ui-select
にコピーの貼り付け値が表示されないようにするにはどうすればよいですか?AngularJSでui-selectで貼り付けた値をコピーしない方法
例を以下に示します。
選択クエリ <div class="dropdown-Finding">
<ui-select class="form-control dropdown-reviwerFinding-select" id="searchBarArea" onkeypress="return false;" multiple tagging tagging-label="false" ng-model="QiReviewerFindingType.selectedItems" theme="bootstrap">
<ui-select-match placeholder="Select Reviewer Findings">{{$item.ShortDescription}}</ui-select-match>
<ui-select-choices repeat="qiQueryFinding in qiQueryFindings | filter:$select.search">
{{qiQueryFinding.ShortDescription}}
</ui-select-choices>
</ui-select>
<span class="carat" open-menu-by-click="searchBarArea"></span>
</div>
コードを入力できますか? – BorHunter
達成しようとしていることとユースケースは何ですか?コピー貼り付けの入力をブロックする理由を説明するのは少し難しいです – Icycool
例を示します。 –