-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ignite fileupload unable to upload multiple files in same http request. #199
Comments
@JiaLiPassion The current behavior is by design, since the single XHR request is limited on the size of data it can send over, thus if two or more large files add up to more than the XHR limit, then all the uploads will fail. |
@kdinev , thank you for your reply, is that possible to add an option to allow to send multiple files in a single XHR request? For example, some requirement need multiple files as the input of a single transaction. |
@JiaLiPassion Sure, this can be logged as a feature request. We need to move the issue to the ignite-ui repo though. |
@kdinev , thank you! |
@JiaLiPassion I've transferred the issue over: IgniteUI/ignite-ui#1228 |
@kdinev, got it, thank you very much! |
Description
Describe the issue.
I want to upload multiple files within the same XHR request, and I use the sample from here, https://jp.igniteui.com/file-upload/multiple-upload, when I select multiple files, it will still send
two xmlhttp request.
Steps to reproduce
open https://jp.igniteui.com/file-upload/multiple-upload
select two files.
Upload and check Network tab in Chrome developer tools,
Result
I hope there is an option to allow use the same XHRHttpRequest to upload multiple files.
just like in plain javascript, we can do like this.
Expected result
Attachments
here is a screenshot
The text was updated successfully, but these errors were encountered: