New to Kendo UI for jQueryStart a free 30-day trial

Enable

methods

Enables or disables the Button.

Parameters:toggleBoolean

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.

<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>
Not finding the help you need?
Contact Support