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="fileManager"></div>
<script>
    var baseUrl = "https://demos.telerik.com/service/v2/core/filemanager/";
    $("#fileManager").kendoFileManager({
        toolbar: {
            overflow: {
                mode: "scroll",
                scrollButtons: "visible"
            }
        },
        dataSource: {
            transport: {
                read: {
                    method: "POST",
                    url: baseUrl + "Read"
                }
            }
        }
    });
</script>In this article