【发布时间】:2022-03-02 14:52:44
【问题描述】:
我正在尝试更改 ngx-mat-select-search 包的 placeholderlabel 和 noentriesfoundlabel。它不工作。
这是我的 HTML:
<mat-form-field class="search-field-dropdown" appearance="none">
<mat-select
formControlName="country"
class="matdropdownCustom"
placeholder="Country"
placeholderLabel="Find country..."
noEntriesFoundLabel="'no matching country found'"
>
<mat-option>
<ngx-mat-select-search
[formControl]="countryFilterCtrl"
></ngx-mat-select-search>
</mat-option>
<mat-option
*ngFor="let option1 of filteredCountriesList | async"
[value]="option1.name"
>
{{ option1.name }}
</mat-option>
</mat-select>
</mat-form-field>
【问题讨论】:
标签: angular select angular-material autocomplete