I am looking for tutorials, articles etc. on how to create a JQuery reorder list for administration of a data driven menu. Instead of typing in parent ids for positioning, I want to be able to d开发者_高级运维rag menu items into position or use up/down arrows or something similar that creates a more intuitive and visual way to manipulate menu items.
Can anyone suggest anything.
Thanks!
I created an example to show the basic principal behind such a menu. It's very bare bones but maybe it will get you started. http://jsfiddle.net/Zevan/UxLqV/2/
The key is basically:
- draw a few divs based on outside information
- make the divs vertically draggable
- onmouseup sort all the divs on their Y position and correct any messed up spacing resulting from the drag
精彩评论