pdf.subject String
(default: null)
Sets the subject of the PDF file.
Example - setting the subject
<div id="propertyGrid"></div>
<script>
$("#propertyGrid").kendoPropertyGrid({
columns: {
fieldColumn: { width: 200 },
valueColumn: { width: 250 }
},
model: {
foo: "bar",
baz: 5
},
toolbar: ["pdf"],
pdf: {
subject: "Details"
},
});
</script>