items.enable Boolean (default: true)

Specifies whether the control is initially enabled or disabled. Default value is "true".

Example

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

<script>
    $("#toolbar").kendoToolBar({
        items: [
        {
            type: "button",
            text: "foo",
            enable: false
        }
        ]
    });
</script>
In this article