-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ddea0e5
commit 996c053
Showing
2 changed files
with
6 additions
and
8 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,13 @@ | ||
# Drag and drop list in Blazor | ||
# Blazor Drag&drop list | ||
|
||
Minimal implementation of drag & drop list. Blazor WebAssembly. | ||
Minimal implementation of drag & drop list in Blazor. Updated to .NET 8. | ||
|
||
No extra js library needed. | ||
|
||
Whole implementation is in [Index.razor](DragAndDropList/Pages/Index.razor). | ||
|
||
More advanced solution with child elements: [Index2.razor](DragAndDropList/Pages/Index2.razor) | ||
(resolves this SO issue ['dragleave' of parent element fires when dragging over children elements](https://stackoverflow.com/questions/10867506/dragleave-of-parent-element-fires-when-dragging-over-children-elements) ) | ||
Ask a question in [![](https://dcbadge.vercel.app/api/server/DsAXsMuEbx?style=flat)](https://discord.gg/DsAXsMuEbx) or open an issue. | ||
|
||
Check the [demo website](https://tesar-tech.github.io/DragAndDropList/). | ||
|
||
![gif](./.github/gif.gif) | ||
|
||
No extra js library needed. | ||
|
||
Inspired by: https://chrissainty.com/investigating-drag-and-drop-with-blazor/ |