toolbar.overflow.scrollButtonsString
(default: "auto")
Defines the visibility of scroll buttons when mode
is "scroll"
. The available options are:
"auto"
— Displays scroll buttons only when needed."hidden"
— Hides the scroll buttons at all times."visible"
— Always shows the scroll buttons.
Example
<div id="pdfviewer"></div>
<script type="module">
$("#pdfviewer").kendoPDFViewer({
toolbar: {
overflow: {
mode: "scroll",
scrollButtons: "visible"
}
},
pdfjsProcessing: {
file: {
url: "https://demos.telerik.com/kendo-ui/content/web/pdfViewer/sample.pdf"
}
}
});
</script>
In this article