items.label String

Specifies the label for the speed-dial item.

Example

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

<script>
    $('#fab-items').kendoFloatingActionButton({
        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'); }
        }]
    });
</script>
In this article