pdf.date Date
The date when the PDF document is created. Defaults to new Date()
.
Example - set the date
<textarea id="editor"></textarea>
<script>
$("#editor").kendoEditor({
tools: ["pdf"],
pdf: {
date: new Date("2015/1/31")
}
});
</script>