首页 > 解决方案 > Angular - mat-autocomplete 到 mat-select-search

问题描述

<mat-form-field>
     <mat-label>ce Type</mat-label>
       <input placeholder="Select type" matInput formControlName="e_id" [matAutocomplete]="cotype">
          <mat-autocomplete #cotype="matAutocomplete" [displayWith]="displayFn">
            <mat-option *ngIf="isLoading" class="is-loading">Loading...</mat-option>
               <ng-container *ngIf="!isLoading">
                   <mat-option *ngFor="let ce of ceList" [value]="ce.id">
                       {{ce.name}}
                   </mat-option>
               </ng-container>
          </mat-autocomplete>
</mat-form-field>

如何将我的可搜索下拉列表更改为 mat-select-search....

标签: angularangular-materialangular8dropdownangular-forms

解决方案


推荐阅读