Is it possible make a multiple file upload accept additional user-submitted parameters like description of the files or tags?

I currently have a JSF (JSF 1.2) page using JavaScript to clone whole file-input plus parameters section if user clicks "Add new file" button. I don't know how to retrieve these files and parameteres (description etc) in the backing bean for further processing. As I don't know how many files there will be I have no idea how I can bind them and their descriptions to the backing bean.

I've gone through almost anything google has to offer including ajax uploaders and richfaces component but nothing gives the ability to upload a file with a description.

link|improve this question
You could create a "type <div>" where you put a file upload and its parameters, and when the user wants to add more files, you recreate this div but with the inputs having a different name (fileupload0,fileupload1...). this way, server-side, you can get the first file (fileupload0) and its description (filedesc0), and same for the 1, 2... until the fields are empty. – Clement Bellot Aug 2 '11 at 6:52
Thanks! Server-side is where have problems. I'm new to JSF so I probably don't get some basic stuff. How do I get this first file+description second-file+description? FacesContext? – mori Aug 2 '11 at 6:55
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.