enable

Enables or disables the Button.

Parameters

toggle Boolean

Indicates whether the Button should be enabled or disabled. true and false arguments are accepted. If no argument is supplied, the Button will assume true and will be enabled.

Example

Open In Dojo
<button id="button" type="button">Edit</button>
<script>
    $("#button").kendoButton();
    var button = $("#button").data("kendoButton");
    // disable button
    button.enable(false);
    // enable button
    button.enable(true);
</script>
In this article