setOptions

Modifies the initial configuration of the FloatingActionButton

Parameters

options Object

The new options.

Example

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

<script>
    var fab = $('#fab').kendoFloatingActionButton({
        text: 'Actions'
    }).getKendoFloatingActionButton();

    fab.setOptions({
        text: 'Print',
        icon: 'print',
        align: 'top start'
    });
</script>
In this article