enableBoolean(default: true)
If set to false, the widget will be disabled and will not allow user input. The widget is enabled by default and allows user input.
Example - disable the widget
<div id="promptbox"></div>
<script>
$("#promptbox").kendoPromptBox({
enable: false,
placeholder: "This PromptBox is disabled..."
});
</script>