pdf.autoPrintBoolean
(default: false)
Specifies if the Print dialog should be opened immediately after loading the document.
Some PDF Readers/Viewers will not allow opening the Print Preview by default, it might be necessary to configure the corresponding add-on or application.
Example
<div id="propertyGrid"></div>
<script>
$("#propertyGrid").kendoPropertyGrid({
pdf: {
fileName: "PropertyGrid.pdf",
autoPrint: true
},
model: {
foo: "bar",
baz: 5
}
});
</script>
In this article