items.cssClass String

Specifies a set of CSS classes for the speed-dial item.

Example

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

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