fileSelectButton.acceptString
Defines the file types that can be selected using the file input.
Example
<div id="promptbox"></div>
<script>
$("#promptbox").kendoPromptBox({
fileSelectButton: {
accept: "image/*"
},
placeholder: "Select images only..."
});
</script>