I'm using a variation on the code from this article to export master and child grids into a single Excel worksheet. I've got the data exporting correctly, but there are two date fields that are showing up in the JSON date format - /Date(1498107600000)/. I'm having trouble finding any documentation on how to correct this. I've tried the following:
var exporter = new kendo.ExcelExporter({ columns: [{ field: "Name" }, { field: "Result" }, { field: "DateCompleted", title: "Date Completed", format: "dd/MM/yyyy" }, { field: "DateReceived", title: "Date Received", format: "dd/MM/yyyy" }], dataSource: dataSource });
Where is this breaking down?
