我正在开发一个应用程序,其中数据显示在kendo网格中。现在我想导出这个pdf / excel。 为此我创建了一个样本 - http://jsfiddle.net/pporwal26/y6KdK/83/
$("#grid").kendoGrid({
toolbar: ["pdf"],
pdf: {
allPages: true
},
pageable: true,
scrollable: true,
pageable: {
pageSize: 2,
refresh: true,
change: function(e) {
nextData(e.index);
}
},
dataSource: {
serverPaging: true,
schema: {
data: "FileList",
total: "total",
},
data: jsonData
},
});
}
在这个例子中我有两个问题 -
答案 0 :(得分:0)
确保您已引用JZIP脚本。您可以使用此CDN:
src="//cdnjs.cloudflare.com/ajax/libs/jszip/2.4.0/jszip.min.js"