首页 > 解决方案 > 如何在 mat-options 而不是 mat-optgroup 上添加搜索

问题描述

我找不到添加搜索选项的方法,因为我的 mat-option 在 mat-optgroup 中,有什么建议吗?

<mat-optgroup *ngIf="company.groups?.length" [label]="company.name" multiple>
    <mat-option *ngFor="let group of company.groups; trackBy: trackById" [value]="group.id">
      {{ group.name }}
    </mat-option>
</mat-optgroup>

标签: angular

解决方案


如果您有兴趣在 mat-select 下拉面板控件中使用搜索文本框,请通过演示“mat-select-with-grouping-and-search” https://stackblitz.com/edit/select-group-search


推荐阅读