Reputation: 64
Hi I am working on large file upload component. I am looking for efficient way of uploading large files. I googled and found few does by slicing the large files and uploading asynchronously. I am looking for the similar implementation in Wicket. Is there any similar way in Wicket to achieve the same?
Upvotes: 1
Views: 480
Reputation: 2261
You could look into integrating Wicket with jQuery FileUpload which supports asynchronous and chunked uploads.
There is a tutorial and a working example on GitHub. I have used this solution for multi-file upload in two projects and it works great.
Upvotes: 1