dplProcessing.upload.urlString
Specifies the url that will receive the submitted file. The handler must accept POST requests.
Example
psuedo
<div id="pdfviewer"></div>
<script type="module">
$("#pdfviewer").kendoPDFViewer({
dplProcessing: {
upload: {
url: "/api/pdfviewer/documents/upload"
}
}
});
</script>
In this article