I am using jQuery version 1.9.1 along with jQuery UI 1.9.2 for my applications that involve multiple lists, each consisting of several rows. While the official demo showcases how to work with one list successfully, I encountered an issue when trying to use two lists. Despite configuring the sortable feature for both lists in my test page, items from the first list were unable to be moved to the second list. Any insights or solutions are greatly appreciated. Thank you.
Here is a snippet of my JavaScript code:
$(function() {
$('#sort1, #sort2').sortable().disableSelection();
});
In addition, when implementing connectWith: '.sort'
, the user interface incorrectly defines placement positions. Furthermore, including float: left
in the list styling restricts movement between the lists entirely.