dplProcessing.readObject
Specifies the configuration of the jQuery.ajax to make an HTTP request to the remote service.
Example
pseudo
<div id="pdfviewer"></div>
<script type="module">
$("#pdfviewer").kendoPDFViewer({
dplProcessing: {
read: {
url: "/api/pdfviewer/read",
type: "POST",
dataType: "json"
}
}
});
</script>
In this article