Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

20
votes
6answers
20k views

Clearing <input type='file' /> using jQuery

Is it possible to clear an <input type='file' /> control value with jQuery? I've tried the following: $('#control').attr({ value: '' }); But it's not working.
11
votes
5answers
36k views

jQuery: get the file name selected from <input type=“file” />

This code should work in IE (don't even test it in Firefox), but it doesn't. What I want is to display the name of the attached file. Any help? <html> <head> ...
4
votes
6answers
5k views

Java: Reading an ASCII file with FileChannel and ByteArrays

I have the following code: String inputFile = "somefile.txt"; FileInputStream in = new FileInputStream(inputFile); FileChannel ch = in.getChannel(); ByteBuffer buf = ...
3
votes
1answer
76 views

It is possible to validate the size and type of input=file in html5

I was reading this http://dev.w3.org/html5/markup/input.file.html, but I only found the "accept" attribute. I try this <input type="file" name="imagefilename" accept="image/x-png, image/gif, ...
2
votes
2answers
113 views

Typing input in by hand works. Using input file causes infinite loop?

I'm currently working on a programming assignment for school. It's a simple text-based RPG. When I test the program locally (by hand), it works correctly. However, when I submit it to the grading ...
2
votes
2answers
2k views

.click() on <input type=“file” /> does not work in Firefox 3.6 - Any workarounds?

Here is a little example: (live demo here) HTML: <input id="file" type="file" /> Javascript: $(function() { $("#file").click(); }); In Firefox 3.6.6 nothing happens, while in IE7 the ...
1
vote
2answers
151 views

Java : save data from UTF-8 file into Sql Server 2008

I failed to save data with accents from utf8 file into my SQL Server 2008 table - SQL collation = SQL_Latin1_General_CP1_CI_AS - (when I do a System.out.print of my insert statement : the accents are ...
1
vote
3answers
196 views

Problem using click() on input[type=file]

I'm having a problem with the click() functon. It does not work in Opera. I am trying to make a input type=file clicked on onclick event of another element. I need to style my input type=file element ...
1
vote
1answer
1k views

chrome file input width

so I'm inserting an <input type="file"> object into a fairly small table....everything works fine, but when I view it in Chrome, even though the file upload object itself is only around 170px ...
1
vote
2answers
1k views

Jquery - Best way to style a Input file tag

what is the best, clean and simplest way to style a <input type="file" tag? Thanks in advance! Peter
1
vote
1answer
1k views

Accessing input type=“file” full path from a Java applet

It is possible to access HTML DOM from an applet using netscape.javascript JSObject API. However, if I query a value of a input type="file", on some browsers (Opera) I get a full path to a selected ...
1
vote
2answers
739 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 ...
1
vote
1answer
1k views

tabindex and <input type=“file” /> different in Firefox and IE

When you render: <input type="file" /> you get a box and a button, right? (At least in Firefox and IE.) On the one hand, in Firefox you can only tab to (focus) the button, but in IE you can ...
1
vote
6answers
3k views

Reading input from file in Visual Studio 2008

Is there a way to simulate: yourprogram < inputFile.txt in Visual Studio 2008?
0
votes
1answer
19 views

Icefaces InputFile component

I've downloaded the ICEFaces 2.0.2 bin-files, but I cannot find the tag "inputFile"; I can only find a tag called "fileEntry" What am I missing? I want to implement something like: ...
0
votes
1answer
29 views

JQuery Select At Least Two Input=File In A Container

I have a file upload group in a form and I'd like to be able to specify how many are required. This is the html: <!-- file upload group --> <div class="mcFileUpGroup" mcminselect="2"> ...
0
votes
0answers
66 views

Liferay : Set default image file in aui input

Can you please help me to set a default image in aui input type file? I need to set a default image for users who don't choose their image. Thanks in advance. Below is the jsp code. <aui:input ...
0
votes
1answer
48 views

HTML Forms & control names

So I was having issues with the form / hidden iframe file upload technique and spent several days trying to figure out why files wouldn't upload until finally figuring out what the issue was. When I ...
0
votes
1answer
98 views

How to crop image/ Preview Image from user before uploading it?

I want to make user upload his picture. After he selects the picture from his local computer, my ultimate aim is to save thumbnails of that image of some specific sizes(rectangular). To maintain ...
0
votes
0answers
49 views

Stop input type file from opening 'file selection window'

How can I stop input type=file from opening 'file selection window' without disabling it? Any method I can try using jquery or javascript? To reply the comments below: Yes, this is not a mistake. I ...
0
votes
1answer
102 views

Windows batch file: rename files (possibly in multiple folders) based on input file (of target filenames)

I am a Batch-newbie, so please accept my apologies and Thanks in advance ! This "tool" is to automate the slimming down of Windows (XP) by disabling certain system driver, DLL and EXE files. Instead ...
0
votes
2answers
37 views

Problem with file submiting

<form method="POST" enctype="multipart/form-data" action="http://site.com/img"> File: <input type="file" name="file" id="abc" /><br/> ID: <input type="text" name="someId" ...
0
votes
2answers
64 views

How can I call/run a software by python?

I'm trying to make a simple script to run different tasks one by one (one after another) but I don't know how can I run the program by python script! I know that it should be simple! but I couldn't ...
0
votes
1answer
287 views

Jquery: change input file value inside an iframe

I have a page where there is an input file. In this page there also is an iframe that contains another input file. So, when the input file in main page changes, I want that the input file inside ...
0
votes
0answers
207 views

mvc custom file upload control (input file with name attribute)

I'm trying to create a custom file upload control: <form method="post" onsubmit="return true;" enctype="multipart/form-data" id="uploadForm"> <input type="file" **name="123"** value="" ...
0
votes
2answers
550 views

Why is <input type=“file”> box grey in IE8?

Can anyone explain why my input type="file" is greyed out in IE8 but not IE7. It's still usable, but you can't actually type in the box any more. <INPUT id="fil1" type="file" size="44" name="fil1" ...
0
votes
0answers
206 views

I can no longer catch the onChange event on my input file since à use dojo1.6

I just migrated my code to Dojo 1.6 and I have a regression in the events of my inputFile. I can no longer catch the onChange event. For my development I need to use a standard input file (without ...
0
votes
2answers
141 views

Submitting a file via AJAX

Started with ajax last week. How would I upload an image using it. What I want to do is upload an image. I would imagine using input type="file" then the PHP file needs to collect the URL of the newly ...
0
votes
0answers
397 views

How to upload files with PHP & MAMP PRO

I'm new to forms that allow file uploads, and can't get it to work on my local environment, which uses MAMP Pro. Initially, I kept getting the following error message: PHP Warning: File upload ...
0
votes
3answers
2k views

<input type=“file”> - custom styles/css

Is there a way to make <input type="file"> look the same in all browsers using some CSS ?
0
votes
2answers
490 views

How to set $_FILE without html browse button?

I have a form that contains an html file browse button ( <input type=file /> ). User select a file by clicking browse button and submit the form. On form submission new php script ...
0
votes
1answer
247 views

Can Action Script FileReference object be sent to Javascript and converted to File object?

In Action Script, FileReference.browse() is called. I would like to send the chosen file to Javascript and convert it to File object, just like if I would press the Browse button of the <input ...
0
votes
1answer
238 views

Styling “input file” - works great, but there is a little annoying problem

I'm using Firefox 3.6.6. I styled my "input file" that looks like this: Here is the code: (live example here) HTML: <div id="wrapper"> <div id="customButton"> <img ...
0
votes
3answers
4k views

How to style “input file” with CSS3 / Javascript?

I would like to style <input type="file" /> using CSS3. Alternatively, I would like user to press on a div (that I will style) and this will open the Browse window. Is that possible to do that ...
0
votes
4answers
5k views

Copying INPUT FILE value to INPUT TEXT with click in jQuery

I would like to copy the value of a input:file to input:text. I can do it with plan JavaScript but I will like to know how to do it with jQuery. ----JavaScript // This what the script would look ...
0
votes
2answers
461 views

This code doesn't work (it has to do with <input type=“file” />)

This code should work in IE, but it doesn't. (Please don't even test it in Firefox, because I won't use this approach in it.) I get the open dialogue to be triggered, but what I want now is to display ...
0
votes
2answers
1k views

Need File Input Element cloned from 1 form into another via PHP & Javascript

Ok, I have an in template function that get's submitted via method="POST". But I can't submit this normally, since this is all I want submitted, and there is already a tag defined above the code ...
-1
votes
2answers
168 views

File input gets cleared when attempted to submit on IE8

I'm working with AJAX uploads. As IE doesn't have the required object, I'll have to make a workaround with iframes. On theory, it's pretty simple: Create a form and an iframe Change the form's ...