如何在prime-p-multiselect(占位符)中更改默认标签“选择”

时间:2019-08-07 11:37:22

标签: angular primeng

我想更改默认标签值,该默认标签值在p-multiSelect下拉占位符中默认设置为“选择”。我想将该单词更改为“选择”或“请选择”或任何需要的关键字。

我在.ts文件中尝试过:

@Input() _defaultLabel: string = 'Select';

Results

2 个答案:

答案 0 :(得分:1)

您可以使用defaultLabel属性来更改默认标签。例如:

<p-multiSelect [options]="cities" formControlName="selectedCities" [defaultLabel]="'Please Select'"></p-multiSelect>

答案 1 :(得分:0)

官方 Documentation 建议使用 placeholder 作为 defaultLabel 属性已弃用。

<p-multiSelect [options]="cities" placeholder="Please Select"></p-multiSelect>