5

我正在使用 PrimeNG 数据表。下面是我的代码:

<p-dataTable [value]="alerts" [expandableRows]="true" [expandedRows]="expandedItems" #dt>
 <p-column expander="true"></p-column>
</p-dataTable>

如何更改行扩展器的默认图标?

4

1 回答 1

0

您可以像这样覆盖组件 CSS:

::ng-deep .fa-chevron-circle-right::before {
  content: "\f055";
  color: green;
}

::ng-deep .fa-chevron-circle-down::before {
  content: "\f056";
}

StackBlitz

于 2018-05-15T20:38:06.623 回答