Magpunta sa Google Groups Home    jQuery UI
Sortable: Drag to another box, but NOT sort within self?

AJ <fireboxstud...@gmail.com>

Hey guys, got a Sortable dilemma. I have two containers that I have
made sortable. I want the bottom box to be able to drag contents into
the top one, but I ONLY want the top one to allow sorting the order.
I've illustrated what I need to do with this screenshot:

http://screencast.com/t/2UpserTwl6q

The code I have thus far is:

$("#topFriends").sortable();

$("#newestFriends").sortable({
    connectWith: ["#topFriends",]

});

Any ideas how this could be accomplished?

Thanks much,

AJ