Hi Sri,
Thank you for reaching out to us. We have reviewed your
requirement, and we would like to confirm that the form can indeed support
multiple file uploads. While the provided example shows single file upload,
you can easily extend this to allow multiple file uploads within the same form
by setting the multiple property in the uploader.
Code Snippet:
var uploadObj = new ej.inputs.Uploader({
autoUpload: false,
multiple: true,
selected: onFileSelect,
});
uploadObj.appendTo('#fileupload');
|
Here you can upload multiple files in the single upload,
please find the sample below,
Sample: https://stackblitz.com/edit/eezcpx-amrwlu?file=index.js
We have created a sample where the form contains two file
uploaders with multi-file upload support, demonstrating how this can be
achieved. You can use the same approach to integrate multiple file uploaders in
your form. Kindly check out the sample provided below for reference:
Sample:
https://stackblitz.com/edit/hlzg4d-8mrj21?file=index.html,index.js
Regards,
Yohapuja S