带有复选框和输入字段的内置下拉列表是否存在?

时间:2019-03-27 15:20:34

标签: angular primeng angular-components

我需要NGPrime提供的现有组件。

但这是一个非常特别的地方。

它必须是带有复选框的下拉菜单或其他一些切换内置输入字段的禁用状态的切换功能。

就像这些元素的组合一样,该复选框应位于过滤器字段的前面,并且该字段必须是常规输入字段,因此没有内置的拟合光泽剂。

enter image description here enter image description here

我似乎找不到真正满足我需求的东西。

1 个答案:

答案 0 :(得分:1)

尝试从Angular Material中选择垫子。它可以与mat-selection结合使用:

<mat-form-field>
  <mat-label>Toppings</mat-label>
  <mat-select [formControl]="toppings" multiple>
    <mat-option *ngFor="let topping of toppingList" [value]="topping">{{topping}}</mat-option>
  </mat-select>
</mat-form-field>

https://material.angular.io/components/select/examples

您可以使用ngx-mat-select-search添加搜索功能。

https://www.npmjs.com/package/ngx-mat-select-search

PS:图像不是内置的,但是您可以通过CSS以:::的形式将它们添加到mat-option。