readonly
Toggles the readonly state of the widget. When the widget is readonly it doesn't allow user input.
There is a difference between disabled and readonly mode. The value of a disabled widget is not posted as part of a
form
whereas the value of a readonly widget is posted.
Parameters
readonly Boolean
The argument, which defines whether the TimePicker should be readonly or editable.
Example - make TimePicker widget readonly
<input id="timepicker" />
<script>
$("#timepicker").kendoTimePicker();
var timepicker = $("#timepicker").data("kendoTimePicker");
timepicker.readonly();
</script>
Example - make TimePicker widget editable
<input id="timepicker" />
<script>
$("#timepicker").kendoTimePicker();
var timepicker = $("#timepicker").data("kendoTimePicker");
timepicker.readonly(false);
</script>