Page 1 of 1

Folder Choice

Posted: Fri Apr 25, 2008 1:08 am
by BioTek
Is it possible to create a html drop down list form for folder upload choice instead of a fixed folder in the account parameter.

Re: Folder Choice

Posted: Fri Apr 25, 2008 8:08 am
by support
Yes, I think so. You can use the JavaScript API.
1/ The applet must be loaded
2/ You write some JavaScript in your HTML dropdown list that notifies the applet
document.fileupload.setParameter("account",something.like.dropdownlist.value);
3/ When end-user starts upload the new "account" parameter modified with JavaScript should be taken into account.

Does it help ?

Re: Folder Choice

Posted: Sat Apr 26, 2008 1:36 am
by BioTek
Yes,
Thank you.