pdf.date Date

The date when the PDF document is created. Defaults to new Date().

Example - setting the date

<div id="propertyGrid"></div>
<script>
  $("#propertyGrid").kendoPropertyGrid({
    columns: {
        fieldColumn: { width: 200 },
        valueColumn: { width: 250 }
    },
    model: {
        foo: "bar",
        baz: 5
    },
    toolbar: ["pdf"],
    pdf: {
      date: new Date("2014/10/10")
    }
  });
</script>
In this article