messages.errorMessages.notFoundString
(default: "File is not found.")
Specifies the error message displayed when the specified PDF file URL returns a 404 error or the file cannot be located at the provided path.
Example
<div id="pdfviewer"></div>
<script type="module">
$("#pdfviewer").kendoPDFViewer({
pdfjsProcessing: {
file: "https://demos.telerik.com/kendo-ui/content/web/pdfViewer/sample.pdf"
},
messages: {
errorMessages: {
notFound: "Custom message: File was not found."
}
}
});
</script>
In this article