2
我已經在數據源分組數據:自定義排序在KendoUI網/數據源
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」的默認排序行爲作爲升序。
您必須在數據源上設置'serverSorting:true'並在服務器上實現自己的排序。 – Brett