readonly Boolean (default: false)

If set to true, the widget will be readonly and will not allow user input. The widget is not readonly by default and allows user input.

Example - make the widget readonly

<textarea id="description"></textarea>
<script>
    $("#description").kendoTextArea({
            readonly: true
    })
</script>
In this article