Sven Meier
Sven Meier
Hm, the clone is added to the body currently: https://github.com/svenmeier/wicket-dnd/blob/master/wicket-dnd/src/main/java/wicketdnd/wicket-dnd.js#L76 I'm wondering why I did it this way. If we added the clone to the parent of the dragged element,...
Yesterday I've tried out adding the hover to the drop target, and it did work quite well. Only problem I found is that the hover with position 'fixed' isn't displayed...
Sure, detection of drop location works as usual. I've just noticed that the clone has to be added to the dragSource to allow it inherit all parental styles. I'll have...
Ok, seems it wasn't so difficult after all. I've pushed a change to 0.6.x and master to allow configuration via the CSS theme: - with position:absolute the clone is added...
Sorry, I forgot to deploy it. Should be available soon in the snapshot repository.
Hi Rob, ListsExample in wicket-dnd-examples shows how that is supposed to work: "position:relative;" makes all positions of the drop-indicator relative to the dropTarget. Perhaps you've added the dropTarget to a...
Hi Rob, does this happen regardless of any DnD? I.e. is it sufficient to replace markup containing a DragSource, or do you have to drag something before? Sven
I've tried with wicket-dnd-examples: Each click on one of the checkboxes updates markup with a DragSource and DropTarget. With Chrome's memory tools I didn't notice any leaks.
Well, this is a common issues with long-running Ajax requests. Most of the time applications prevent further Ajax requests by showing a veil. You could try using stable markup, e.g....
I'm just using Eclipe's built-in code format.