Multiple drag in a single drag
Team,
I have a situation here .I want to drag mutliple items in a single
drag.Is this possible.
I have put in a small piece of code which drags one item at a
time.below is the code .Can someone help me here.
pageLoad =function(){
$(".block").draggable({helper: 'clone'});
$(".drop").droppable({
accept: ".block",
activeClass: 'droppable-active',
hoverClass: 'droppable-hover',
drop: function(ev, ui) {
var dropguy = $(ui.draggable.element).clone();
var id = dropguy.attr("id");
var divdata = document.getElementById(id);
$(".drop").each(function(i, node){$
(node).droppableDestroy();});//Fix IE bug
var prm = Sys.WebForms.PageRequestManager.getInstance();
prm._doPostBack('UpdatePanel1', '');
}
});
}
Thanks in advance