toolbar.overflow.scrollButtonsPositionString(default: "split")
Defines the placement of scroll buttons. The available options are:
"split"— Scroll buttons appear at both ends of the toolbar."start"— Scroll buttons appear only at the start of the toolbar."end"— Scroll buttons appear only at the end of the toolbar.
Example
<div id="fileManager"></div>
<script>
var baseUrl = "https://demos.telerik.com/service/v2/core/filemanager/";
$("#fileManager").kendoFileManager({
toolbar: {
overflow: {
mode: "scroll",
scrollButtonsPosition: "end"
}
},
dataSource: {
transport: {
read: {
method: "POST",
url: baseUrl + "Read"
}
}
}
});
</script>
In this article