toolbarBoolean|Object
(default: true)
Toolbar option accepts a Boolean value which indicates if the toolbar will be displayed or an Object with items
and overflow
configuration. Inherits Kendo UI Toolbar.
Example
<div id="pdfviewer"></div>
<script type="module">
$("#pdfviewer").kendoPDFViewer({
toolbar: {
items: ["pager", "spacer", "open", "download"],
contextMenu: false
},
pdfjsProcessing: {
file: {
url: "https://demos.telerik.com/kendo-ui/content/web/pdfViewer/sample.pdf"
}
}
});
</script>
In this article