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="treelist"></div>
<script>
$("#treelist").kendoTreeList({
columns: [
{ field: "Name" },
{ field: "Position" }
],
dataSource: [
{ id: 1, Name: "Daryl Sweeney", Position: "CEO", parentId: null },
{ id: 2, Name: "Guy Wooten", Position: "Chief Technical Officer", parentId: 1 }
],
pdf: {
forceProxy: true,
proxyURL: "/save"
}
});
</script>
In this article