Я бы порекомендовал также не делать перетаскиваемый сортируемый список, а послушать событие receive
на сортируемом, чтобы отменить событие:
$('div.products-list').sortable({
connectWith: '.products-list',
placeholder: 'ui-state-highlight',
items: 'div.product',
revert: 200,
receive: function(event, ui) {
var prod_id = ui.item.attr("prod_id");
/* Equal to 1 is valid because an item was just added to the list: */
if ($(this).find(".product[prod_id='" + prod_id + "']").length > 1) {
ui.sender.sortable("cancel");
}
}
});
Пример: http://jsfiddle.net/z5X5y/