enableBoolean(default: true)
Indicates whether the button must be enabled or disabled. By default, it is enabled, unless a disabled="disabled" attribute is detected.
Example
<button id="speechButton"></button>
<script>
$("#speechButton").kendoSpeechToTextButton({
enable: false
});
</script>