I want to know how to clone and append an element to the droppable area with the following code:

    $(function() {
    $(".draggable").draggable();
    $(".item").droppable({
        drop: function(event, ui) {
            var $this = $(this);
            $this.append(ui.draggable);    

            var width = $this.width();
            var height = $this.height();
            var cntrLeft = width / 2 - ui.draggable.width() / 2;
            var cntrTop = height / 2 - ui.draggable.height() / 2;

            ui.draggable.css({
                left: cntrLeft + "px",
                top: cntrTop + "px"
            });
        }
    });
});

I feel happy if anyone explain me in detail.And please try to give me an example in Fiddle.It helps me a lot.Thank you.

Thank you for your quick response and yes it's fine and when I dragged the clone it's not working and I need to be interchanged the clones I dropped to the nearest location to it.And as you can see in the below mentioned sample it is not draggable when once it is dropped on the target.

http://jsfiddle.net/kiran/brCX5/31/embedded/result/

And the website link is http://www.vitsoe.com/en/re/shop/606/sketchtool where you can see what I mean but in this link it is just attaching but I need it to be dropped ie.. to be snapped to the nearest path and when I dropped with the same image it should attach below to the existing one and not to be overlapped.

And once again thank you for your response.

Thanks for the reply and I need it exactly the same but what happens is that when I interchange the positions as I said before it doesn't snap to the nearest co-ordinates as we first drag and drop on the target and one more thing is that it is adding the images though there is no gap at the end of the div section and if there is no place at the end it should check whether there is gap at the top or bottom and it should append to the the image otherwise it should revert can you please check that.

link|improve this question
3  
What are you trying to do? What problem are you having? – coderkid Mar 24 '11 at 22:19
im a little unsure what you want to do – Neal Mar 24 '11 at 22:22
welcome to the community, please take some time to read through the StackOverflow FAQ – zzzzBov Mar 24 '11 at 22:23
when you want to reply to someone you can leave a comment on their answer. Usually this requires a higher reputation, but since you asked the question you can reply to anyone. Don't edit the answer itself. – Brandon Mar 25 '11 at 17:40
feedback

2 Answers

I think this is what you wanted: http://jsfiddle.net/maniator/brCX5/33/

$(function() {
    $(".draggable").draggable({
        helper: 'clone',
        snap: '.ui-droppable',
        snapMode: 'outer'
    });

    $(".droppable").droppable({
        accept: '.draggable',
        drop: function(event, ui) {
            var clone = $(ui.draggable).clone();
            $(this).append(clone);
            clone.removeClass('draggable')
            clone.draggable({
                snap: '.ui-droppable',
                snapMode: 'outer'
            });
        }
    });
});

Works like a charm :-), your welcome

link|improve this answer
Neal this does not seem to work, it puts block under in some occasions. – Marino Šimić Mar 25 '11 at 19:37
@Marino what seems to be the issue that warranted a -1? – Neal Mar 25 '11 at 19:37
Block get put out of the column if you drag and drop them on the first block in the column. – Marino Šimić Mar 25 '11 at 19:39
Well not exactly, it is working erratically. SOmetimes yes sometimes no :/ – Marino Šimić Mar 25 '11 at 19:40
@Marino, i am not sure what that means – Neal Mar 25 '11 at 19:40
feedback

This seems to work:

http://jsfiddle.net/brCX5/97/

link|improve this answer
-1 that does the same thing as it does now just with an animation. and you cannot move elements that were already placed. – Neal Mar 25 '11 at 19:39
Already placed element are meant to not be moved, the OP put the clone and removed the class on purpose. And it works without putting block out and in between where it's already occupied. As i get it this is the intended behaviour. - he gave an example on the other site and then explained what differences he wants. – Marino Šimić Mar 25 '11 at 19:42
And as you can see in the below mentioned sample it is not draggable when once it is dropped on the target. -- direct quote – Neal Mar 25 '11 at 19:47
Maybe I misunderstood the intention then :( – Marino Šimić Mar 25 '11 at 23:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.