I tried to hide the content with absolute position outside the screen. But the A4 size pdf has no content. I have tried dojo with this example and also nothing is printed. What have I missed? PDF has content only when it is not off screen. Thanks.
<div id="content" style="position: absolute;left: -100000px;top:0;width:800px;">
This is <a href="a'>http://www.telerik.com">a non-clickable link</a>.
</div>
<script>
var draw = kendo.drawing;
draw.drawDOM($("#content"), {
avoidLinks: true,
paperSize: "A4"
})
.then(function(root) {
return draw.exportPDF(root);
})
.done(function(data) {
kendo.saveAs({
dataURI: data,
fileName: "avoid-links.pdf"
});
});
</script>