473,387 Members | 1,844 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

cloneNode'ing file input

Hello,

In Mozilla (Firefox 1.0.7) I can cloneNode a file input element that
has a selected file value and appendChild it to another form without a
problem.

IE 6 loses the selected file value. Is this a bug with IE that it
loses the value, or with FF that it keeps it?

I'd really like to be able to maintain the selected file value in IE.

Does anyone have any advice or experience with cloneNode that can
provide some insight?

I have not tried this on any browsers other than IE 6 and FF 1.0.7.

Thank you,
Garth

Oct 19 '05 #1
7 3485
On 19 Oct 2005 13:25:47 -0700, ga****@gmail.com wrote:
In Mozilla (Firefox 1.0.7) I can cloneNode a file input element that
has a selected file value and appendChild it to another form without a
problem.

IE 6 loses the selected file value. Is this a bug with IE that it
loses the value, or with FF that it keeps it?


I don't think either could truly be considered a bug, but I'm afraid
you'll just have to live with IE's behaviour.

Jim.
Oct 19 '05 #2
Thank you Jim for the honest if somewhat disheartening response.

All of this is an attempt to submit one or more files without
disturbing the page that the file inputs are sitting on. The rest of
the form data is submitted using the xmlhttprequest object via post.

If I can send these files using "ajax" style techniques that would
solve my problem entirely, but I haven't found a way to do that. I
also haven't found anyone else who has done it either, so I'm still
assuming that it can't be done.

Anyone have anything further to offer before I move on to a different
approach? (darn IE)

Oct 19 '05 #3
On 19 Oct 2005 13:52:02 -0700, ga****@gmail.com wrote:
If I can send these files using "ajax" style techniques that would
solve my problem entirely, but I haven't found a way to do that. I
also haven't found anyone else who has done it either, so I'm still
assuming that it can't be done.


Oh no, that's easy, just give your form a target of an IFRAME with the
name you want, then the submission goes to the IFRAME, the main
document isn't disturbed and you use normal cross frame scripting to
get the results back.

People have been doing it for years, long before ajax have ceased to
be just another mediocre european football team...

Jim.
Oct 19 '05 #4
On Wed, 19 Oct 2005 20:38:24 GMT, ji*@jibbering.com (Jim Ley) wrote:
On 19 Oct 2005 13:25:47 -0700, ga****@gmail.com wrote:
In Mozilla (Firefox 1.0.7) I can cloneNode a file input element that
has a selected file value and appendChild it to another form without a
problem.

IE 6 loses the selected file value. Is this a bug with IE that it
loses the value, or with FF that it keeps it?


I don't think either could truly be considered a bug, but I'm afraid
you'll just have to live with IE's behaviour.

Jim.


I'd consider Firefox's behaviour to be (slightly) less secure than
IE's behaviour. After all, is the value of a file input on one form
really applicable to a file input cloned and placed on another form?

In a browser that doesn't allow linking to file:/// links from the
local hard disk when the page is loaded from http://, retaining the
value of a cloned file input seems odd, out-of-place and unintended to
me. So IE's behaviour seems the "more correct" of the two to me.

I'm sure an equally weak argument could be made as to why it is okay
and proper to retain the value of a cloned file input.

--
Grant Wagner <sq*******@yahoo.com>
comp.lang.javascript FAQ - http://jibbering.com/faq
Oct 19 '05 #5
On Wed, 19 Oct 2005 20:58:20 GMT, Grant Wagner <sq*******@yahoo.com>
wrote:
I'd consider Firefox's behaviour to be (slightly) less secure than
IE's behaviour. After all, is the value of a file input on one form
really applicable to a file input cloned and placed on another form?

In a browser that doesn't allow linking to file:/// links from the
local hard disk when the page is loaded from http://, retaining the
value of a cloned file input seems odd, out-of-place and unintended to
me. So IE's behaviour seems the "more correct" of the two to me.

I'm sure an equally weak argument could be made as to why it is okay
and proper to retain the value of a cloned file input.


I couldn't come up with a scenario whereby cloning an input into
another form would not be equivalent to just changing the action on
the form that contained it originally, but there may well be.

I would lean towards IE too being the one I'd prefer, but can't come
up with a concrete reason why. It might be interesting to see what
Opera does here as it did (does?) let you specify a default value -
prompting the user to confirm the submissoin if the user doesn't
change it.

Cheers,

Jim.
Oct 19 '05 #6
I actually already have an iframe in place which served as the target
for the dynamically created form which I had the cloned file inputs
appendChilded to.

I'll switch around the machinery and just have the original form be
submitted to the iframe. I had a good reason not to submit the
original form, but in the fervor of trying to get the file inputs to be
cloned "properly" I've forgotten why.

Thanks to everyone who has contributed!

Oct 19 '05 #7
VK

Grant Wagner wrote:
I'd consider Firefox's behaviour to be (slightly) less secure than
IE's behaviour. After all, is the value of a file input on one form
really applicable to a file input cloned and placed on another form?

In a browser that doesn't allow linking to file:/// links from the
local hard disk when the page is loaded from http://, retaining the
value of a cloned file input seems odd, out-of-place and unintended to
me. So IE's behaviour seems the "more correct" of the two to me.

I'm sure an equally weak argument could be made as to why it is okay
and proper to retain the value of a cloned file input.


I have big eye on both of them (FF and IE). Since beginning of times
you either couldn't get fileInput.value at all using script or
(starting 4th) *only file name w/o path*. Now both are glad to tell me
the full path including drive name even for server-loaded pages. Tested
on IE6 SP1 and FF1.0.7

What a hey (to say the softest) is going on?

Oct 19 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: J.R | last post by:
Greetings, I'm adding dynamically created input type='file' controls via JavaScript. However when I try to access they do not seem to be returned in the form collection. Any ideas? Thanks,...
1
by: MonkeyBoy | last post by:
I am doing some some HTML manipulation in client-side script (IE5.x and IE6.x browsers only). Something like.. var tmpHTML = oTable.outerHTML // do something to the HTML her oTable.outerHTML =...
1
by: Petr Felzmann | last post by:
Hi, why the duration of call the CloneNode(true) is steadily increasing? First call is 0.004s and 100th is 0.16s! XML file is 5kB only, no disk swap. XmlDataDocument xml = new...
0
by: Sullivan WxPyQtKinter | last post by:
Hi, I am now using minidom for my current development. I use cloneNode method in Element object, but it just does not work. The test code is very simple as follows: =========CODE==============...
2
by: Csaba Gabor | last post by:
One of the things that I never understood was the motivation for not being able to iterate over the event listeners added via ..addEventListener It's particularly vexing because if you do...
1
by: jaktharkhan | last post by:
Hi, I really really need help in trying to figure out how can I do a CloneNode on an Iframe where the cloned IFRAME clones with all its contents?. Basically what I am doing is dynamically building...
19
by: VUNETdotUS | last post by:
Firefox showed me a security error when I was copying a value of file field object into new DOM created input file field. Can I do something about it? Thanks.
2
by: Alino | last post by:
hello, i need help with this javascript <script type="text/javascript"> function addfile() { var obj = document.getElementById("sprytextfield2").cloneNode(true);...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.