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