items.click Function
(default: false)
Specifies the click event handler of the speed-dial item.
Example
<button id="fab-items"></button>
<script>
$('#fab-items').kendoFloatingActionButton({
align: 'top start',
icon: 'home',
items: [{
label: 'Download',
icon: 'download',
/* The result can be observed in the DevTools(F12) console of the browser. */
click: function() { console.log('download action'); }
}]
});
</script>