1
劍道UI圖表API在ie9中無法正常工作,它在Chrome,Firefox和ie10中工作正常。我在ie9.simply頁面沒有得到任何異常刷新。請參閱下面的代碼不工作在IE9劍道圖導出到IE9中的PDF
$("#btnExportToPDFView").click(function() {
// Convert the DOM element to a drawing using kendo.drawing.drawDOM
kendo.drawing.drawDOM($(".content-wrapper"))
.then(function (group) {
// Render the result as a PDF file
return kendo.drawing.exportPDF(group, {
paperSize: "auto",
margin: { left: "1cm", top: "1cm", right: "1cm", bottom: "1cm" }
});
})
.done(function (data) {
// Save the PDF file
kendo.saveAs({
dataURI: data,
fileName: "Reports.pdf"
//proxyURL: "http://demos.telerik.com/kendo-ui/service/export"
});
});
});
考慮張貼最少的代碼量,不會在IE9工作,但會在其他工作。代碼問題更有可能得到關注和答案。 – Paul 2014-12-06 17:11:16