toolbar.overflow.scrollDistanceNumber
(default: 50)
Specifies the distance (in pixels) the toolbar scrolls when a scroll button is clicked.
Example
<div id="fileManager"></div>
<script>
var baseUrl = "https://demos.telerik.com/service/v2/core/filemanager/";
$("#fileManager").kendoFileManager({
toolbar: {
overflow: {
mode: "scroll",
scrollDistance: 100
}
},
dataSource: {
transport: {
read: {
method: "POST",
url: baseUrl + "Read"
}
}
}
});
</script>
In this article