fileSelectButton.enableBoolean(default: true)
Enables or disables the File Select button.
Example
<div id="promptbox"></div>
<script>
$("#promptbox").kendoPromptBox({
fileSelectButton: {
enable: false
},
placeholder: "File selection disabled..."
});
</script>