Re: multiple AjaxFileDropBehaviour on single page

2019-08-14 Thread Martin Grigorov
example? > > > > Best & Thanks for the answer so far, > > > > KB > > > > ----- Ursprüngliche Mail - > >> Von: "Sven Meier" > >> An: "users" > >> Gesendet: Dienstag, 13. August 2019 09:03:49 > >> Betr

Re: multiple AjaxFileDropBehaviour on single page

2019-08-14 Thread Sven Meier
019 09:03:49 Betreff: Re: multiple AjaxFileDropBehaviour on single page Hi, all Ajax behaviors' requests are queued in the browser. Even if you disable this (see AjaxRequestAttributes#channel), all access to the page is synchronized on the server anyway. You could to upload to a resource instea

Re: multiple AjaxFileDropBehaviour on single page

2019-08-13 Thread Andrew Kondratev
I would simply lock other drag and drop upload components, while upload is in progress. You can also have a look at my experiments with custom drag and drop upload fields here https://github.com/andruhon/WicketDragAndDropFileAjaxUpload I have similar implementation in my app and it does allow

Re: multiple AjaxFileDropBehaviour on single page

2019-08-13 Thread Korbinian Bachl
this change it in that in could be parallel and could you point me an example? Best & Thanks for the answer so far, KB - Ursprüngliche Mail - > Von: "Sven Meier" > An: "users" > Gesendet: Dienstag, 13. August 2019 09:03:49 > Betreff: Re: multiple AjaxFi

Re: multiple AjaxFileDropBehaviour on single page

2019-08-13 Thread Sven Meier
Hi, all Ajax behaviors' requests are queued in the browser. Even if you disable this (see AjaxRequestAttributes#channel), all access to the page is synchronized on the server anyway. You could to upload to a resource instead, AjaxFileDropBehaviour doesn't support this though. Have fun

multiple AjaxFileDropBehaviour on single page

2019-08-13 Thread Korbinian Bachl
Hi, wicket 8 has this neat AjaxFileDropBehaviour and it works like charm. However, if I have multiple components on one page with a AjaxFileDropBehaviour each and the upload of 1 drop is running, i cant upload a 2nd one at the same time; Any idea how to solve this? E.g.: File 1 with 100MB