messages.dialogs.okTextString(default: "OK")
Specifies the text for the confirmation button in dialog windows. This button is used to confirm actions and close dialogs with positive results.
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: {
okText: "Accept"
}
}
});
</script>
In this article