我正在尝试对primeng中的自动增量模板列进行排序,但它不会在不指定[field]
的情况下工作(我不确定应该将哪个字段分配给rowIndex位置)
<p-column header="#" [sortable]="true">
<template let-index="rowIndex" pTemplate="body">
<span>{{index+1}}</span>
</template>
</p-column>
这会根据列索引显示自动增量,但不会对列进行排序。