items.showIcon String (default: "both")

Specifies where the button icon will be displayed. Possible values are: "toolbar", "overflow" or "both" (default).

Example

<div id="toolbar"></div>

<script>
    $("#toolbar").kendoToolBar({
        items: [
            { type: "button", text: "Foo", icon: "check", showIcon: "toolbar" }
        ]
    });
</script>
In this article