1

我在我的一个项目中使用 primeNG。我使用了从 primeNG 排序的表格。我想使用自定义图标进行排序。

知道如何覆盖现有的 primeNG 图标。

PrimeNG 版本 - 6.1.4

4

2 回答 2

3

像我创建测试数据一样为您的表创建一个类:

<p-table #tt [value]="testdata" class="test-data" selectionMode="single" [lazy]="true"
        [lazyLoadOnInit] = "false" (onLazyLoad)="loadDataLazily($event)">
<ng-template pTemplate="header">
                <tr>
                    <th *ngFor="let col of cols" [pSortableColumn]="col.header">
                        {{col.header}}
                        <p-sortIcon [field]="col.header" ariaLabel="Activate to sort"></p-sortIcon>
                    </th>
                </tr>
            </ng-template>

现在在你的 style.css 中覆盖下面的 css 并使用你自己的内容类型代码:

.test-data .pi-sort:before {
    content: "\02C4"
    }
    .test-data .pi-sort-down:before {
        content: "\02C5";
    }
    .test-data .pi-sort-up:before {
        content: "\e914";
    }

它将更改您将使用 class="test-data" 的表格的图标。更多内容类型代码在这里 content-type-code这里

于 2018-10-12T06:44:23.093 回答
1

您可以通过使用 icon 属性来使用 font-awesome 图标。

例如<button pButton type="button" icon="fa fa-user"></buton>

否则,您可以自定义默认图标。

就像我在 p-table 排序图标上所做的那样......

:host ::ng-deep .pi-sort-alt:before {
  content: "\F0DC";
  font-family: "FontAwesome";
}

不要忘记将字体系列添加到“FontAwesome”

于 2020-12-02T16:30:10.310 回答