dplProcessing Object
Specifies the DPL configuration options. For a complete demo and a backend implementation, check the Telerik UI for ASP.NET Core DPL Processing demo.
Example
<div id="pdfviewer"></div>
<script>
$("#pdfviewer").kendoPDFViewer({
dplProcessing: {
read: {
url: ""
},
download: {
url: ""
},
upload: {
url: ""
}
},
toolbar: {
items: [
"pager", "spacer", "open", "download"
]
}
});
</script>