Is there a way to filter which file extensions are allowed to be selected? I limit to PDF or PNG but it allows me to select XML.
<div>
<hr />
<h4 class="gsi-padding-tb0-lr12">Upload File to Session...</h4>
<TelerikUpload AllowedExtensions="@( new List<string>() { ".pdf", ".png" } )"
OnSelect="@OnUploadSelect"
OnCancel="@OnUploadCancel"
OnRemove="@OnUploadRemove">
</TelerikUpload>
<div class="demo-hint gsi-padding-tb0-lr12">
<small>
Upload <strong>PDF</strong> or <strong>PNG</strong> files with a maximum size of <strong>6MB</strong>.
</small>
</div>
</div>