Implementing A Draggable/Resortable Stacked List in jQuery - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T04:05:57Zhttp://stackoverflow.com/feeds/question/315704http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/315704/implementing-a-draggable-resortable-stacked-list-in-jquery1Implementing A Draggable/Resortable Stacked List in jQueryMike McKee2008-11-24T22:15:13Z2008-11-24T22:18:47Z
<p>I'm needing to make this layout editor that uses a good bit of <strong>jQuery</strong> for letting one resort the items on their resume. I envisioned showing a dialog with a graphical representation of the sections, sort of like:</p>
<pre><code>[Details - locked -- immovable]
[Overview -- immovable, but can be hidden or shown again]
----imaginary line where things can not be moved above this---
[Career History -- movable]
[Key Skills -- movable + can be hidden or shown again]
[Education & Qualifications -- movable]
[Personal Interests -- movable + can be hidden or shown again]
---imaginary line where things cannot be moved below this--
[References -- immovable]
</code></pre>
<p>When items are moved, they would need to slide into their closest slot.</p>
<p>You wouldn't happen to know an example on the web that is even remotely similar to this, would you?</p>
http://stackoverflow.com/questions/315704/implementing-a-draggable-resortable-stacked-list-in-jquery/315709#3157091Answer by Jimmy for Implementing A Draggable/Resortable Stacked List in jQueryJimmy2008-11-24T22:18:47Z2008-11-24T22:18:47Z<p>jquery.ui.draggable and jquery.ui.sortable comes to mind.</p>
<p><a href="http://docs.jquery.com/UI" rel="nofollow">http://docs.jquery.com/UI</a></p>