overflow.scrollButtonsPosition String (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 - Position scroll buttons at the end

Open In Dojo
<script>
    $("#toolbar").kendoToolBar({
        overflow: {
            mode: "scroll",
            scrollButtonsPosition: "end"
        }
    });
</script>
In this article