Hello, I am trying to export a document using pdf export feature.
Tests I am doing in on a single three pages html file wich contents are text.
I have used this function:
function
getPdf(){
kendo.drawing.drawDOM($(
"#temp-container"
), {
paperSize:
"A4"
,
margin: { left:
"0cm"
, top:
"1cm"
, right:
"0cm"
, bottom:
"1cm"
},
template: $(
"#page-template"
).html()
}).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:
"HR-Dashboard.pdf"
,
proxyURL:
"http://demos.telerik.com/kendo-ui/service/export"
});
});
}
I have created this dojo that creates header and footer, but header is overlapping contents
if I add:
#temp-container{
top
:
100px
;
bottom
:
100px
;
position
:
absolute
; }
In the style, contents are cut in the bottom.
Any suggestions?