@page "/Disabled" Blazor Reorder Example

Drag between lists

@context.title

@context.details Go

Disable Drop
@context.title

@context.details Go

Only Drop
@context.title

@context.details Go

@code { private bool disable = true; public List list1 = new() { new ListItem("Google", "https://google.com", "Again looking for a bug ..."), new ListItem("StackOverflow", "https://stackoverflow.com", "Could be this the solution?"), new ListItem("GitHub", "https://github.com", "Let's get awesome code"), new ListItem("Twitter", "https://twitter.com", "I want to rest"), new ListItem("Another", "https://another.com", "The solution must be somewhere!!!") }; public List list2 = new() { new ListItem("Facebook", "https://facebook.com", "Meta"), new ListItem("Instagram", "https://instagram.com", "Meta"), new ListItem("Whatsapp", "https://web.whatsapp.com", "Meta"), }; public List list3 = new() { new ListItem("Oculus", "https://oculus.com", "Meta"), }; }