How to upload multiple files in embedded form?

Yep, you can use the multiple attribute on the input field to allow selecting multiple files. You would then need to use Javascript to upload the files to different process variables, as each process variable can only hold one file. Check out this example to see how to upload a file with Javascript.

3 Likes