【问题标题】:Expand and collapse icons for mat table with accordion - Angular使用手风琴展开和折叠垫表的图标 - Angular
【发布时间】:2019-07-09 07:04:06
【问题描述】:

我正在使用一个通用组件来显示带有手风琴的表格。 我以某种方式实现了运行良好的功能。 但我面临展开和折叠图标的问题。 当我单击特定行时,我只想更改该行图标。 但是所有行中的所有图标都更改了。

    <mat-icon *ngIf="col.columnDef == ' ' && !expanded">
      {{ expandedElement ? 'keyboard_arrow_up' : 'keyboard_arrow_down' }}
    </mat-icon>

Stackblitz :https://stackblitz.com/edit/angular-yr45pl

提前致谢。

【问题讨论】:

    标签: html css angular angular-material mat-table


    【解决方案1】:

    请将table.component.html 中的第 24 行修改为:

    {{ expandedElement !== row ? 'keyboard_arrow_up' : 'keyboard_arrow_down' }}
    

    【讨论】:

      猜你喜欢
      • 2012-09-23
      • 2021-11-10
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2015-11-29
      • 1970-01-01
      • 2020-01-25
      • 1970-01-01
      相关资源
      最近更新 更多