I am trying to combine a draggable panel (top) and a sort panel (bottom).
Drag and drop works fine, but sorting fails.
Here is my JS fiddle: http://jsfiddle.net/dmUKY/9/
Both drag'n drop and sortable functions droppable:drop function. When sorting elements, the function should replace the selected object.
drop: function (event, ui) { //alert($(this).parent().html()); //alert($(ui.helper).attr('class')); var obj; if ($(ui.helper).hasClass('draggable')) { //alert('draggable'); obj = $(ui.helper).clone(); obj.removeClass('draggable').addClass('editable') //obj.addClass('droppable'); $(this).parent().append(obj); } //alert($(this).parent().html()); }
How to combine these two functions?
jquery jquery-ui-sortable jquery-ui-draggable draggable
dams
source share