我正在使用PrimeNG的DataTable(http://www.primefaces.org/primeng/#/datatable)。我将其中一列定义为sortable()。这很有用,直到我想使用组方法对分组头进行分组。
this.headerRows = [
{
columns: [
{header: 'Station Data', colspan: 3}
]
},
{
columns: [
{header: 'ID'},
{header: 'Name'},
{header: 'Basin'}
]
}
];
<p-dataTable [value]="stationsArray" [headerRows]="headerRows" [globalFilter]="gb" [rows]="3" [paginator]="true" [rowsPerPageOptions]="[3,5,7]" scrollWidth="100%" >
<!-- ID -->
<p-column field="id" [sortable]="true"></p-column>
<p-column field="name" [sortable]="true"></p-column>
</p-dataTable>
此时,可排序列停止显示排序指示符。这些不能一起使用吗? image of grouped headers