Tagged Questions
The input-type-file tag has no wiki summary.
2
votes
1answer
514 views
how to hide file location in <input type='file'>? [closed]
Possible Duplicate:
How to hide text field in Html File Upload
I'm setting up an AJAX image uploader that will allow a user to choose a file, preview it with AJAX, and then click a submit ...
2
votes
3answers
712 views
<input type=“file”> limit selectable files by extensions
how can someone limit the files that can be selected with the input type="file" element by extensions ... ?
I already know the accept attribute, but in chrome it does limit the files by the last MIME ...
2
votes
3answers
1k views
can i make file dialog in input type file in html to be multi select?
I want to implement a multi file upload I was thinking if its possible to have a browse button open a file dialog which may allow me to select more than one file and once i select them these files can ...
2
votes
2answers
400 views
How to unit-test a method that receives a FormCollection to upload a file?
I want to Unit-test a method like the following:
public ActionResult StoreFile(FormCollection form, string _paginaAtual)
{
Session["MySession"] = 1
if (Request.Files["uploadedFiles"] != ...
1
vote
2answers
377 views
How to open, modify and save a file with javascript and ActiveX?
I tried different methods to open and show a file on client without to send the file to a server.
Opening: I tried to access the file with javascript from a <input type=file>, but the security ...
1
vote
1answer
741 views
AJAX post to simulate Input type=“file” path
I would like to know if its possible to make an AJAX post request to submit a file path to a form. Basically, I want to know if its possible to simulate the path a normal input type="file" would ...
1
vote
2answers
740 views
Showing the browser’s ‘select file’ dialog when focusing input[type=file] through keyboard navigation
As the title says, I want the ‘select file’ dialog to open when a certain input gets focus by tabbing through the form fields (using keyboard navigation). By default, the ‘select file’ window only ...
0
votes
1answer
121 views
adding javascript alert on input type file prevents open file dialog from appearing in IE
I have an input type ="file" when I try to put onclick = "alert('test')"; it shows in both IE and FF, but in IE after i press the ok button the message will disappear and nothing happens, in FF : ...
0
votes
0answers
104 views
Internet Explorer problem with long file names in input type=file
My QA tester is running long filename use cases through our application and ran into unexpected behavior in Internet Explorer 8 (shocking, I know...).
The filename including path is 258 characters ...
0
votes
2answers
87 views
Android xml phone number in keyboard restriction
Hi in my project i have a edit text box, where i want the user to enter his phone number, I need it in a format like +0000000000 no need to allow - or any other symbols. I need to restrict the user ...
0
votes
1answer
341 views
jQuery input file click method and access denied on IE
I'm trying to use only a button as input file, it works fine in Firefox, Chrome, Safari but not in IE... I always get 'access denied' when submitting the form.
The code:
$('#input_file').click();
...
0
votes
1answer
99 views
Interop between html input type=file and java applet
I'm currently developing a web app where I make use of digital signing of forms using the portuguese citizen card and java applets.
Everything have been going smoothly with the regular forms until I ...
0
votes
0answers
64 views
Split multiple file tag holding some files into new single ones
Regarding the new functionality of Javascript FileAPI in Chrome and Firefox, is it possible to somehow assign a File object to any other input type file ?
According to this article, there are two ...
0
votes
1answer
52 views
How to Get “input=”file“” Effect With jQuery?
I want to open windows where user may choose file from his/her computer. Only problem, without this:
<input type="file" />
Is it possible?
0
votes
1answer
479 views
How to get file size before uploading?
Is there any possible way to get the size of a file before uploading it through the browser?
I found Check file size before uploading file, but the script doesn't work with Internet Explorer 6, 7 or ...
0
votes
1answer
328 views
CSS file-input hide path [closed]
Possible Duplicate:
How to hide text field in Html File Upload
Hi!Is it possible to hide the input-file path keeping just the browse button?
thanks
Luca
0
votes
1answer
221 views
Input-type-file path, where is it stored on AJAX request?
I have been monitoring the parameters a website receives when a file is uploaded (via an input type="file"). Surprisingly, the parameter and its value were looking like this :
parameter: upfile
...
0
votes
2answers
299 views
How to check an input type=“file” has a file or not using jquery?
I have a file upload control <input id="File1" type="file" /> in my page... How to check an input type="file" has a file or not using jquery on click of a button upload?