Re: wicket-dnd and link multiple items at once

2018-03-14 Thread Sven Meier
Hi, well that's an 'interesting' use case you have there. No, I'm afraid that would require some mayor tweaks in wicket-dnd's JavaScript. Have fun Sven Am 14. März 2018 07:08:50 MEZ schrieb Dirk Forchel : >Hi Sven, >Thank you fror your answer. I think you have

Re: wicket-dnd and link multiple items at once

2018-03-14 Thread Dirk Forchel
Hi Sven, Thank you fror your answer. I think you have misunderstood the "use case" we want to achieve. We don't want to select several items and transfer them at once but rather select only one item (only one drag source) and drop that item (link operation) to different drop targets. I think if

Re: wicket-dnd and link multiple items at once

2018-03-12 Thread Sven Meier
Hi Dirk, wicket-dev doesn't know anything about selection. You could do that by yourself, keeping track of clicked items while a control key is held. When the actual dragNdrop operation is performed, your DragSource can put all selected items into the Transfer and the DropTarget can retrieve

wicket-dnd and link multiple items at once

2018-03-12 Thread Dirk Forchel
Hello, I've a question regarding the Wicket drag'n'drop library. We're using this library successfully in order to link items with other items (the only operation allowed is a LINK operation) between to different panels (or container). It works quite well and I'm a bit curious about the way how to