pdf.creator String
(default: "Kendo UI PDF Generator")
The creator of the PDF document.
Example - setting the creator
<div id="propertyGrid"></div>
<script>
$("#propertyGrid").kendoPropertyGrid({
columns: {
fieldColumn: { width: 200 },
valueColumn: { width: 250 }
},
model: {
foo: "bar",
baz: 5
},
toolbar: ["pdf"],
pdf: {
creator: "John Doe"
}
});
</script>