Hi Keerthana:
Thanks for your reply.
In our scenario, we need to upload several files with form data, so how can I do that in async fashion, because we need to process the files on the server with the data in one action method.
How can I achieve that using the async upload?
Thanks again
David
<ej-upload-box id="uploadbox1" width="100px" save-url="//js.syncfusion.com/ejServices/api/uploadbox/Save" remove-url="//js.syncfusion.com/ejServices/api/uploadbox/Remove" file-select="onselect"> <e-button-text browse="File Browse" /> <e-dialog-text size="filesize" /> </ej-upload-box> <script> function onselect(args) { for(i=0;i<args.files.length;i++) { console.log(args.files[i].name); console.log(args.files[i].extension); } } </script> |