angular-dynamic-forms
angular-dynamic-forms copied to clipboard
type file accept specific filetypes
Hey, is there a way to restrict the file types accepted by a input type=file or the maximum file size (for example accept only pdf's under 30mb) ?
I don't recall whether HTML supports that or not. You may be able to do it programmatically, though. When one or more files are selected, the model contains details about them, which I believe includes file type. You should be able to set a watch on your file input model to check selected files and remove any that don't match.