pdf.forceProxyBoolean
(default: false)
If set to true
, the content will be forwarded to proxyURL
even if the browser supports the local saving of files.
Example
<div id="propertyGrid"></div>
<script>
$("#propertyGrid").kendoPropertyGrid({
pdf: {
fileName: "PropertyGrid.pdf",
forceProxy: true,
proxyURL: "/api/export-pdf"
},
model: {
foo: "bar",
baz: 5
}
});
</script>
In this article