messages.dialogs.saveString(default: "Save")
Specifies the text for the save/download button in export and file dialogs. This button initiates the file save or download operation.
Example
<div id="pdfviewer"></div>
<script type="module">
$("#pdfviewer").kendoPDFViewer({
pdfjsProcessing: {
file: "https://demos.telerik.com/kendo-ui/content/web/pdfViewer/sample.pdf"
},
messages: {
dialogs: {
save: "Download"
}
}
});
</script>
In this article