trying to get scheduler to print out in agenda view onto multiple pages. I can get it crammed onto one page and completely useless and unreadable or i can get 2 pages, one with a header and the other runs off page and data becomes missing.
I tried some options from http://www.telerik.com/forums/better-(configurable)-pdf-output-on-the-scheduler but no avail.
So short question: can kendo ui scheduler export to pdf on multi pages AND look ok? If so how?
here is my code snippet
<button onclick='getPDF("section")'>Custom page Export</button>
function getPDF(selector) {
kendo.drawing.drawDOM($(selector), {
paperSize: "Letter",
multiPage: true,
margin: { top: "2cm", left: "1cm", right: "1cm", bottom: "1cm" }
}).then(function (group) {
//Render the result as a PDF file
return kendo.drawing.exportPDF(group);
}).done(function (data) {
//Save the PDF file
kendo.saveAs({
dataURI: data,
fileName: "Calendar.pdf",
proxyURL: "https://www.DOMAINNAME.com/Homeroom/Calendar/Export"
});
});
}