messages.dialogs.cancelString(default: "Cancel")
Specifies the text for the cancel button in dialog windows. This button closes dialogs without performing any action or saving changes.
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: {
cancel: "Close"
}
}
});
</script>
In this article