I'm load multiple file list using field input of type file. Problem is i want to delete some of them from original list before form post. Couse FileList is immutable in js and I can't create new input to post with overridden FileList (js security reasons) I must build array with files that I want to submit.
But i don't know how to post and receive it using Wicket.Ajax.post (due to the above-mentioned I can't post form)
Standard fileUploadField get request as instance of IMultipartWebRequest on form post. How to do same using Wicket.Ajax.post ?
You can already do this my using a MultiFileUpload? You don't need to build it yourself.
See this Wicket example: http://www.wicket-library.com/wicket-examples/upload/multi