enabled Boolean (default: true)

Specifies whether the FloatingActionButton is enabled (true) or disabled (false).

Example

<button id="fab-top-start">Top Start</button>

<script>
    $('#fab-top-start').kendoFloatingActionButton({
        align: 'top start',
        enabled: false
    });
</script>
In this article