Difficult sortable issue [video example]
Hello. It's been awhile since I've posted here. For the first time in
about 6 months I've needed to do some drag and drop, and I'm glad to
see the 1.5 release happen at the same time :)
So here is a video of a sortable situation I have: http://www.5empty.net/drag_drop.mov
You can see that each block (pose) is sortable, and it works great,
but I also need to be able to sort a group of poses, otherwise known
as a sequence. The html is structured is below. The obvious problem is
that 1 or more sortable objects are of different sizes than the
others, and this size can vary. There could be 3 or 8+ poses in a
sequence that need to be moved/sorted as a group.
Is there any way to make the sorting of sequences/groups of objects
more fluid along side single sortable objects?
<div id="mySortables">
<div class="sortableItem pose">Pose</div>
<div class="sortableItem pose">Pose</div>
<div class="sortableItem pose">Pose</div>
<div class="sortableItem pose">
<div class="pose">Pose</div>
<div class="pose">Pose</div>
<div class="pose">Pose</div>
<div class="pose">Pose</div>
</div>
<div class="sortableItem pose">Pose</div>
<div class="sortableItem pose">Pose</div>
</div>