我需要创建一个下拉列表,用户只能选择3种或更少类型的软件。
我尝试了
选择了max-selected-options =“ 3”,也是一种动态方式,但没有效果。
----html
<mat-form-field>
<mat-select
placeholder="Type of Software* (You can choose up to three categories)"
formControlName="typeSoftware" chosen max-selected-options="3"
multiple >
<mat-option
*ngFor="let item of selectedValueTypeSoftware"
id="typeSoftware"
[value]="item.viewValue">
{{item.viewValue}}
</mat-option>
</mat-select>
</mat-form-field>
我搜索并阅读了我的想法,但实际上它们都不起作用,我只是一个初中生,我经验不足。 谢谢 the dropdown look dropdown list