• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Uploading multiple files

 
Ranch Hand
Posts: 57
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello Everyone,

Is there a JSF component/framework that allows to upload multiple files at one time. Users should be able to click on the browse button and select multiple files to upload rather than having many different browse button.

I have implemented successfully to upload one file at a time and I would highly appreciate any insight all of you might have to help me towards implementing mulitple files at one time.

thanks in advance!!

Regards
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It is possible to upload multiple files through multiple file input elements (i.e., multiple "Browse" buttons) in one form, but not otherwise. HTML has no form elements for uploading more than one file per file input. There's nothing JSF (or any other web framework) can do about that.
 
Greenhorn
Posts: 19
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi

can you send the sample code for multiple upload images.
 
reply
    Bookmark Topic Watch Topic
  • New Topic