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="timedurationpicker" />
<script>
$("#timedurationpicker").kendoTimeDurationPicker({
columns: [ "hours", "minutes" ],
value: 5400000,
readonly: true
});
</script>