toolbar.items.commandString
Default commands in the PDF Viewer are:
OpenCommand
PageChangeCommand
DownloadCommand
EnableSelectionCommand
EnablePanCommand
ExportCommand
Example
<div id="pdfviewer"></div>
<script type="module">
$("#pdfviewer").kendoPDFViewer({
toolbar: {
items: [
{ type: "pager", command: "PageChangeCommand" },
{ type: "button", text: "Download", command: "DownloadCommand" }
]
},
pdfjsProcessing: {
file: {
url: "https://demos.telerik.com/kendo-ui/content/web/pdfViewer/sample.pdf"
}
}
});
</script>
PrintCommand
OpenSearchCommand
ZoomCommand
In this article