fileSelectButton.restrictions.maxFileSizeNumber
Defines the maximum file size in bytes.
Example
<div id="promptbox"></div>
<script>
$("#promptbox").kendoPromptBox({
fileSelectButton: {
restrictions: {
maxFileSize: 5242880
}
},
placeholder: "Max file size: 5MB..."
});
</script>