readonly Boolean
(default: false)
If set to false
, the user will be will unable to enter values within the inputs. The widget is non-readonly by default and allows user input.
Example - set the widget as readonly
<input id="otpinput" />
<script>
$("#otpinput").kendoOTPInput({
items: 3,
readonly: true
});
</script>