-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
nv-file-select selection of same file after removing it does not work #550
Comments
having similar issue, any workarounds? |
I found the solution the follow link: #357 |
This fix which reset the value of the input element doesn't work in IE10, and probably other versions of IE. Any idea of the correct way to fix this in IE ? |
Take the latest version of angular-file-upload.js. It has the fix for IE |
This worked for me: #322 (comment) |
Should the isEmptyAfterSelection function in the src/services/FileSelect.js really only be dependent on the
multiple
attribute? I e.g. need to reset the input field without the multiple attribute after selection.I got a input element with the nv-file-select attribute like this
When i have selected the file foo.ext and then i am removing it with
item.remove();
it is not in my queue anymore. Though the input element still has the value foo.ext. So when i want to select this file again because i have removed it accidentally - it wont work since the change event will not be thrown.The text was updated successfully, but these errors were encountered: