My Grid has the following structure
$("#grid").kendoGrid({
dataSource: {
data: data,
type: 'json'
},
pageable: true,
columns: [
{ field: "SubServiceTypeName", title: "Sub Type" },
{ field: "PrepaidMonthName", title: "Gói dịch vụ" },
{ field: "DeviceName", title: "Tên thiết bị" },
{ field: "DeviceStatusName", title: "Tình rạng" },
{ field: "IsDeployName", title: "Triển khai" },
{ field: "PriceStatementName", title: "CL giá" }
]
});
I want to merge rows with same value of column [PrepaidMonthName] (call as “Gói dịch vụ”). I don’t know if kendo supports merge cells or not yet?
What I expect:
Or is there another solution for me to do this?