messages.toolbar.openString(default: "Open")
Specifies the text displayed for the open file tool in the toolbar. This tool allows users to browse and select PDF files from their local file system.
Example
<div id="pdfviewer"></div>
<script type="module">
$("#pdfviewer").kendoPDFViewer({
messages: {
toolbar: {
open: "Abrir Archivo"
}
},
pdfjsProcessing: {
file: {
url: "https://demos.telerik.com/kendo-ui/content/web/pdfViewer/sample.pdf"
}
}
});
</script>
In this article