enable Boolean (default: true)

Indicates whether the Button should be enabled or disabled. By default, it is enabled, unless a disabled="disabled" attribute is detected.

Example

<button id="button" type="button">Foo</button>
<script>
$("#button").kendoButton({
    enable: false
});
</script>
In this article