toolbar.contextMenuBoolean
(default: false)
When this option is set to true, the toolbar will render a dropdown button as its first item. The dropdown will contain the open
, download
and print
tools instead of them being rendered on the right-side of the toolbar.
Example
<div id="pdfviewer"></div>
<script type="module">
$("#pdfviewer").kendoPDFViewer({
toolbar: {
contextMenu: true
},
pdfjsProcessing: {
file: {
url: "https://demos.telerik.com/kendo-ui/content/web/pdfViewer/sample.pdf"
}
}
});
</script>
In this article