readonlyBoolean(default: false)
Sets the read-only state of the PromptBox. When set to true, the PromptBox content cannot be modified but remains accessible.
Example
<div id="promptbox"></div>
<script>
$("#promptbox").kendoPromptBox({
readonly: true,
value: "This text cannot be edited..."
});
</script>