enable

Enables or disables the widget.

Parameters

enable Boolean

If true, the widget will be enabled. If false, the widget will be disabled.

Example - enable the widget

<textarea id="description"></textarea>
<script>
    var textarea = $("#description").kendoTextArea({
        enable: false
    }).data('kendoTextArea');
    textarea.enable(true);
</script>

Example - disable the widget

<textarea id="description"></textarea>
<script>
    var textarea = $("#description").kendoTextArea().data('kendoTextArea');
    textarea.enable(false);
</script>
In this article