messages.dialogs.exportAsDialog.labels.fileNameString
(default: "File name")
Specifies the label text for the filename input field in the export dialog where users enter the desired output filename.
Example
pseudo
<div id="pdfviewer"></div>
<script type="module">
$("#pdfviewer").kendoPDFViewer({
dplProcessing: {
read: {
url: ""
},
download: {
url: ""
},
upload: {
url: ""
}
},
messages: {
dialogs: {
exportAsDialog: {
labels: {
fileName: "Custom File Name Label"
}
}
}
}
});
</script>
In this article