I have a file upload control in my form.I am using Angular JS . When I put the required attribute to validate that the file is selected it is not working.
<input id="userUpload" name="userUpload" required type="file" accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" />
<button type="submit" class="btn btn-primary"><i class="icon-white icon-ok"></i> Ok</button>
Can you please suggest why the required is not working ?