Would it be possible to configure how the exported PDF on the Scheduler same as on Grid?
Example: http://dojo.telerik.com/ufOpa -> click on "Export to PDF".
The PDF is configure as:
toolbar: [
"pdf"
],
pdf: {
allPages:
true
,
avoidLinks:
true
,
paperSize:
"Letter"
,
margin: { top:
"2cm"
, left:
"1cm"
, right:
"1cm"
, bottom:
"1cm"
},
landscape:
false
,
repeatHeaders:
true
,
template: $(
"#page-template"
).html(),
scale: 0.8
},
...which is amazing! That PDFis everything one could wish for.
Now, on the Scheduler, if we were to try and "Export to PDF" the data here: http://dojo.telerik.com/IWeCe
...the result would not be a multi-paged, letter-sized PDF, but a single-page PDF containing a cropped section of the Scheduler.
I put together a quick POC using the kendo.drawing.drawDOM method, which yielded some results (letter-format, multi page PDF), but it's far from usable.
http://dojo.telerik.com/IWeCe/2 -> Click "PDF me!" on the top of the screen.
My question is, can we expect - and if yes, in what timeline - to be able to configure the PDF output on the Scheduler the way we can do it on the Grid?
Thank you in advance!