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="propertyGrid"></div>
<script>
$("#propertyGrid").kendoPropertyGrid({
    toolbar: {
        items: [
            { name: "search" },
            { name: "sort" },
            { name: "group" }
        ],
        overflow: {
            mode: "scroll",
            scrollButtons: "visible",
            scrollButtonsPosition: "start"
        }
    },
    model: {
        foo: "bar",
        baz: 5
    }
});
</script>
In this article