All Questions
Tagged with html-input file-upload
19 questions
0
votes
0
answers
116
views
react / next.js Input file: initial selection not registering
I want upload files via html form using next.js (14) + nextui and everything seems to work fine except after reloading the page, the initial file selection is not registered. The event.target.files ...
0
votes
1
answer
320
views
input capture file reduce and convert issue
I tried to Html5 input capture from camera(Samsung Tab s7) and then resize(my main goal this point is reducing image size) and than upload post method via my controller. But when I upload, my file ...
0
votes
1
answer
298
views
How to set uploaded file's name to an input type:text on javascript in html
I want to add a File Upload control to my html page like below.
<input class="form-control valid" id="rptScreenShot" type="text" style="float:left;" runat="server"
...
0
votes
1
answer
2k
views
HTML INPUT TYPE FILE MULTIPLE NOT WORKING IN IE
I am trying to upload multiple files a t a time and used the following html code.
<input type="file" name="file" multiple/>
It is working well in all other browsers except IE.I am using version ...
2
votes
4
answers
8k
views
HTML input file onchange not triggering second time for different file
I've seen many questions regarding input file elements not triggering the onchange event the second time with the same file, but my case is not that. My onchange handler is not trigerred when a ...
2
votes
2
answers
1k
views
Safari hangs when uploading files
When uploading files to our PHP application through Safari, it starts uploading them and, after a bit, it hangs without proceeding. The request then goes in timeout and a 500 is reported.
Trying again ...
1
vote
1
answer
160
views
IE9 +Older HTML Multiupload Input Fallback
I have a web application and most of the users use IE 11 there is no problem with multiply file upload. My problem is that some users use IE 9 and older (HTML5 input type file's multiple attribute ...
1
vote
2
answers
2k
views
Error when <input type="file"> is blank on a submitted form (Google App Script)
I'm creating a Google Web App (which is a HTML form) that will upload a file to a folder on My Drive. It's not required to have a file to upload, so there will be times where this input will ...
0
votes
1
answer
1k
views
asp:FileUpload control not getting file value when using fake input
I try to customize my asp:FileUpload control by using some css trick. When I finally upload the picture, it seems that the asp:FileUpload did not grab the file.
In the aspx page:
<style>
#...
0
votes
1
answer
565
views
How to detect (in js) if files are selected in HTML5 multiple input?
I googled it and found out that i can listen the onchange event on input type="file". But this works only with input without the multiple attribute. Does anyone know how to listen "files selected" ...
0
votes
1
answer
411
views
Pass fileList object from page 1 to page 2.html
I have a file input to choose multiple files.
I know how to display a preview of these images on the same page. But, in my case I want to choose images on page 1 and send this fileList to page 2 to ...
0
votes
2
answers
2k
views
Have a file input form upload when a user clicks "open"
I am wondering if this flow is possible:
Click a button that says "Upload". It is styled very differently from the usual . It does not show the "No file selected" text.
The usual file browser pops ...
1
vote
1
answer
1k
views
Uploading a file with in html with filetype constraint
I want a user to upload .csv file using file browse of html.
I have used file input type but the user can upload any type of files with that.
What i want is a user can only browse and see .csv file.
...
1
vote
1
answer
2k
views
Input type file triggering twice in mozilla(windows)
I have a strange issue with my website(using backbone.js,but i don't feel its something related to this framework). The template i am using is a bootstrap powered Admin theme called Ace Admin.
The ...
7
votes
5
answers
20k
views
Why file open dialog opens twice on clicking the button in FireFox
I have a file <input> field and a <span> decorates the input field:
<span class="span5 btn btn-primary btn-file" id="chose_files_btn" onclick="filechose_button.click()">chose files
...