我在我的角度应用程序中使用ngx-datatable组件。我已经使用button.GONE
对数据进行了分组。我想对分组数据应用排序,所以我尝试了
attributes: {
createdAt: { type: 'string', columnType: 'datetime', autoCreatedAt: true, },
updatedAt: { type: 'string', columnType: 'datetime', autoUpdatedAt: true, },
// id: { type: 'number', autoIncrement: true, },
id: { type: 'string', columnName: '_id' },
},
但这不起作用。
[groupRowsBy]="'age'"
这是测试的链接