readonlyBoolean(default: "false")
If set to true, the widget will be readonly and will not allow user input. The widget is not readonly be default and allow user input.
Example - make the widget readonly
<div id="datetimepicker">
</div>
<script>
$("#datepicker").kendoDateTimePicker({
readonly: true,
dateInput: true
});
</script>