XUpload - Force, rather than auto

Message
Author
azvisual
Posts: 34
Joined: May 23, 2007 9:05 pm

Force, rather than auto

#1 Postby azvisual » Jun 13, 2007 3:23 am

Many of my users are confused when trying to add files. They would prefer I show all 5 inputs, rather than the way it adds to a queue, which many do not understand until I explain it to them. Sigh... anyways, quick hack for this I hope?

As always, thank you.

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

#2 Postby PilgrimX182 » Jun 13, 2007 5:55 am

Ok. First use upload_form2.html.
Just add these fields after 1st upload field:

Code: Select all

<input name="file_1" type="file" onChange="checkExt(this)" size=40><br>
<input name="file_2" type="file" onChange="checkExt(this)" size=40><br>
<input name="file_3" type="file" onChange="checkExt(this)" size=40><br>
<input name="file_4" type="file" onChange="checkExt(this)" size=40><br>
should work fine.

And now you can remove Add Slot button.

azvisual
Posts: 34
Joined: May 23, 2007 9:05 pm

#3 Postby azvisual » Jun 14, 2007 4:12 am

Worked great, thank you.