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
<input id="textbox" />
<script>
$("#textbox").kendoTextBox({
readonly: true
});
</script>