items Array
Specifies the speed-dial items that will be rendered in a popup container anchored to the FloatingActionButton.
**Note: when using the items
configuration, clicking on the FloatingActionButton will open the popup containing the speed-dial list.
Example - define speed-dial items
<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'); }
}]
});
</script>