ViRuSTriNiTy
ViRuSTriNiTy
@rybkov Try to remove HashSet in favor of a simple reference property T like ``` csharp private T DraggableItem { get; set; } private bool DropZoneAllowsDrag(T item) { return DraggableItem...
@rybkov Please provide a minimal, reproducible example, preferably in a GitHub repo. Currently I cannot see your code as a whole and we are simply guessing ;)
@rybkov Nice. In the meantime I found a minor issue: the code only seem to work reliably in a Blazor Server Side app when you have a fast connection. When...
I think there are actual use cases for executing a copy on drop to the same zone. For example if you want to duplicate an item in a list then...
@rybkov Perhaps PR #107 will help you here. It allows configuration of the default behavior.
Can you please explain in detail what the issue is?
Please show us a call stack to allow narrowing down the issue.
This service class is used by the DropZone component internally and you should not try to access it. The documentation states clearly what steps are required to get started, injecting...
`DropZone` provides the event [OnItemDrop](https://github.com/Postlagerkarte/blazor-dragdrop/blob/3d66dbab83cb2931ce2ae836452fc360f9b31d1a/Plk.Blazor.DragDrop/Dropzone.razor.cs#L252) for this. Currently the event only sends the dragged item so you need to assign individual event handlers per drop zone to know which drop...
I've seen this behaviour since Orchard 1.8, i'm also cursios about what is causing this.