When working with horizontal Sortables, I found that it's easier for me to not use Sortable but rather create Draggable and Droppable pairs by hand using fixed-height elements (SPANs in your case). Write a custom ondrop function that will reorder the list on each Droppable drop. It's sort of re-inventing the Sortable concept but you end up with something that responds in a less-quirky way because the Droppable isn't greedy. I'd suggest also having some visual indicator when you're hovering over a Droppable to indicate that you can drop there, otherwise it won't make sense to the user the same way that a vertical Sortable does (by automatically bumping the order when you hover over elements).
-Kevin --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "MochiKit" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/mochikit?hl=en -~----------~----~----~----~------~----~------~--~---
