Implementing A Draggable/Resortable Stacked List in jQuery - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T04:05:57Z http://stackoverflow.com/feeds/question/315704 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/315704/implementing-a-draggable-resortable-stacked-list-in-jquery 1 Implementing A Draggable/Resortable Stacked List in jQuery Mike McKee 2008-11-24T22:15:13Z 2008-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 &amp; 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#315709 1 Answer by Jimmy for Implementing A Draggable/Resortable Stacked List in jQuery Jimmy 2008-11-24T22:18:47Z 2008-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>