我有問題將Kendo UI Grid導出爲Excel和Excel中的PDF。
Everythig使用Chrome可以正常工作,但在IE9中沒有任何反應。
這是我的網格。有什麼不對或缺失?
Kendo UI Grid導出爲Excel/PDF無法在IE9上工作
$("#gridDetalhes").kendoGrid({
dataSource: {
data: myJsonList
},
excel: {
allPages: true,
fileName: "SGD_Detalhes.xlsx"
},
toolbar: ["excel", "pdf"],
columns: [
{ field: "DataInicio", width: "135px", title: "Início", type: "date", template: '#= kendo.toString(DataInicio,"dd/MM/yyyy HH:mm:ss") #' },
{ field: "DataFim", width: "135px", title: "Fim", type: "date", template: '#= kendo.toString(DataFim,"dd/MM/yyyy HH:mm:ss") #' },
{ field: "Duracao", width: "80px", title: "Duração", type: "string" },
{ field: "Gerador", width: "40px", title: "A/M", type: "string" },
{ field: "Identificador", width: "120px", title: "Identificador", type: "string" },
]
});
我試過這個,但沒有任何反應。 也許我的IE必須配置或別的 – Goldar