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