2017-05-29 111 views
1

我有一個簡單的選擇是這樣的:角2選擇編輯

<select [style]="{width : '100%' }" [(ngModel)]="rule.valoreImmesso" class="lm-custom-dropdown"> 
     <option *ngFor="let valore of rule.comboValues" [value]="valore.value">{{valore.label}}</option> 
</select> 

我想,以過濾器的選項添加下拉列表中輸入文本。可能嗎?怎麼做?

+0

我需要相同的。我需要可編輯多選擇組合框在角2/typescript..which必須也支持鍵盤 – Ziggler

回答

0

你可以像在Safari瀏覽器不支持那麼你必須寫上自己的自定義下拉這個

<input type="text" list="cars" [(ngModel)]="rule.valoreImmesso"/> 
<datalist id="cars"> 
    <option *ngFor="let valore of rule.comboValues" [value]="valore.value"></option> 
</datalist> 

datalist標籤。你可以在互聯網上找到一些並根據需要進行修改。