I have a UI problem I am trying to figure out how to make it intuitive to use. I have a list of items, that is in no order, and flat. I need to figure out a way to use DnD in javascript to allow the user to reorder them (that is easy), and to put them into a hierarchy as I have below.
I don't know if I want to go with how Visual Studio does it for laying out menus, where, if they drag an item on top of another item I can show two boxes, one to the right, for go down a level and one below to just keep them on the same level.
Is there a better approach to solving this problem?
- Item 3
- Item 2.1
- Item 2
- Item 1
- Item1.1
- Item2.2
- Item2.2.1
This is how this example would look, I don't care if is an <ol> element, I was just trying to show some ordering, but I expect each item to be within an <li> tag.
- Item 1
- Item 1.1
- Item 2
- Item 2.1
- Item 2.2
- Item 2.2.1
- Item 3
