fileSelectButton.restrictionsObject
Defines file restrictions for the file selection.
Example
<div id="promptbox"></div>
<script>
$("#promptbox").kendoPromptBox({
fileSelectButton: {
restrictions: {
allowedExtensions: [".pdf", ".doc", ".docx"],
maxFileSize: 10485760
}
},
placeholder: "Select documents..."
});
</script>