如何将Angular Material多个选择项限制为下拉菜单中的3个项?

时间:2019-03-29 10:01:11

标签: angular typescript

我需要创建一个下拉列表,用户只能选择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

0 个答案:

没有答案