XUpload - Internet Explorer 8 - Additional Popup Browse Controls - XUp

Message
Author
ttfd11
Posts: 2
Joined: Mar 03, 2009 5:47 am

Internet Explorer 8 - Additional Popup Browse Controls - XUp

#1 Postby ttfd11 » Mar 03, 2009 5:54 am

In Internet Explorer 8 once you select a file and click into the Description box, a second browse control is added along with another description box.

This happens in the demo here as well.
http://www.sibsoft.net/upload_form_pro.html

I realize IE 8 is not fully released but some of my users got it pushed to them during their Windows update and are now having this issue.

Any help would be appreciated.

Thanks.

User avatar
PilgrimX182
Posts: 2186
Joined: Mar 22, 2006 1:39 pm

#2 Postby PilgrimX182 » Mar 04, 2009 3:57 am

Hmm...try this: in xupload.js after line

Code: Select all

this.style.left = '-9000px';
add this:

Code: Select all

this.style.display = 'none';

ttfd11
Posts: 2
Joined: Mar 03, 2009 5:47 am

#3 Postby ttfd11 » Mar 04, 2009 5:34 am

I tried this fix, but all it did was cause the extra browse box and description box to pop up immediatley after selecting the file, instead of them popping up when you click on the description.

jeffshead
Posts: 18
Joined: Apr 21, 2009 3:26 pm

#4 Postby jeffshead » Apr 21, 2009 3:33 pm

I have the same issue with Opera and Safari on my site but not on the sample 'upload_form.html' here on SibSoft.

Image

I noticed the SibSoft sample does not use the same 'upload.js' file. It uses a custom 'upload2.js'.

Can we get a fix for this?

jeffshead
Posts: 18
Joined: Apr 21, 2009 3:26 pm

#5 Postby jeffshead » Apr 28, 2009 11:07 pm

PilgrimX182 wrote:Hmm...try this: in xupload.js after line

Code: Select all

this.style.left = '-9000px';
add this:

Code: Select all

this.style.display = 'none';
My unaltered 'xupload.js' file contained the following:

Code: Select all

this.style.left = '-1000px';
I changed it to this and it seems to have solved the problem:

Code: Select all

this.style.left = '-9000px';