My json data for this cells is String i.e. : "05:20" {HH:mm} format.
Here is my grid options for this column:
column ... { title: 'Jazdy', field: 'driving_time', footerTemplate: "#= data.driving_time.sum #"}
aggregate ... { field: "driving_time", aggregate: "sum" }
schema ... model: { fields: { driving_time: { type: "duration" }, ...} ...}
So in this scenario in footer i see value only from last row. How to make it properly to get summary duration in footer?