我已将 dataSource 中的数据分组为:
var dataSource = new kendo.data.DataSource({
transport: {
read: {
url: " ",
}
},
//and some other parameters specified
// group by the "category" field
group: {
field: "category",
aggregates: [
{ field: "price", aggregate: "max" },
{ field: "price", aggregate: "min" }
]
}
});
现在我想根据此处指定的字段以外的字段对组进行排序。这怎么可能实现?或者我如何禁用或覆盖“dir”的默认排序行为为升序。