items.enabled Boolean (default: true)

Specifies whether the Item is enabled or not. By default all items are enabled.

Example

<button id="fab-items"></button>

<script>
    $('#fab-items').kendoFloatingActionButton({
        align: 'top start',
        icon: 'home',
        items: [{
            label: 'Save',
            icon: 'save',
/* The result can be observed in the DevTools(F12) console of the browser. */
            click: function() { console.log('save action'); }
        }, {
            label: 'Print',
            icon: 'print',
/* The result can be observed in the DevTools(F12) console of the browser. */
            click: function() { console.log('print action'); },
            enabled: false
        }]
    });
</script>
In this article