toolbar.items.overflowString
Specifies the overflow behavior of the toolbar item. Accepts auto
, never
, or always
to control when the item appears in the toolbar's overflow menu.
Example
<div id="pdfviewer"></div>
<script type="module">
$("#pdfviewer").kendoPDFViewer({
toolbar: {
items: [
{ type: "button", text: "Custom", overflow: "always" },
"pager"
]
},
pdfjsProcessing: {
file: {
url: "https://demos.telerik.com/kendo-ui/content/web/pdfViewer/sample.pdf"
}
}
});
</script>
In this article