items.icon String

Specifies the name for an existing icon in a Kendo UI theme that is rendered in the speed-dial item.

See the Web Font Icons help article for more details on Kendo UI icons.

Example

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

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