Hello Kendo Team,
I'm working with Kendo Grid and some columns are not exporting when I use the export excel feature, I think it is related with the template property, but call my eye some other columns are coming well even using template,
example:
Working Fine
field: "OrderID",
title: Order,
template: function (data) {
var url = getUrlWithLocale("/Account/OrderHistory/GetOrderDetails/");
return "<a id='btnViewDetails' data-orderID='" +
data.OrderID +
"' href='" +
url +
data.OrderID +
"/Ds' target='_self'>" +
data.OrderID +
"</a>";
}
Coming blank
field: "VolumePoints",
title: Volume,
template: "#:Pricing.VolumePoints#"
Not sure why this is happening, looks like blank columns can't to convert object into text, but the grid renders ok in the browser,
I'm attaching the js file and the excel file for your reference,
Hope you can assist,
Thanks in advance!