I have two lists connected with jQuery UI's sortable
, allowing to drag items from one list to another.
http://jsbin.com/uraga3
Is there a simple way to drag several items at the same time - e开发者_StackOverflow中文版.g. to move items #3, #4 and #7 from left to right?
Not in the plugin.
You can write some custom code to add items to a selection and then move multiple at once.
Like:
$( "li" ).bind( "click", function() {
$(this).toggleClass('sorting-selected');
});
$( "ul" ).bind( "sortreceive", function(event, ui) {
$('li.sorting-selected').appendTo($(this));
});
精彩评论