After many hours of searching and testing, I thankfully came across a
site with the same set up and began comparing and testing. It turns
out that mine wasn't working because I was using jQuery 1.3.x and UI
1.6rc6. When I used the same versions as the sample I came across it
worked. The working combination is jQuery 1.2.6 and UI 1.5.3.
Shall I report this as a bug?
Scott González
unread,
Feb 7, 2009, 9:34:33 AM2/7/09
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
On Feb 7, 3:36 pm, Bohdan Ganicky <bohdan.gani...@gmail.com> wrote:
> Seems as a bug to me. You can try to do this inside the drop callback:
>
> setTimeout(function() { $(ui.draggable).remove(); }, 1000);
>
> ...and it works! Or you can do this:
>
> $(ui.draggable).hide('slow', function() {
> $(this).remove();
>
> });
>
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to jQuery UI Development
Thanks Bohdan for the snippet. Much appreciated. It works nicely.
Your tickets pretty much cover. No point in opening another.
Pasquale
On Feb 7, 7:36 am, Bohdan Ganicky <bohdan.gani...@gmail.com> wrote:
> Seems as a bug to me. You can try to do this inside the drop callback:
>
> setTimeout(function() { $(ui.draggable).remove(); }, 1000);
>
> ...and it works! Or you can do this:
>
> $(ui.draggable).hide('slow', function() {
> $(this).remove();
>
> });
>
>
> So it seems that the ui.draggable can't be removed immediately after
> the drop callback is triggered and I think it's a bug.
>
> I will create a ticket for it. Thanks for reporting it!
>
> --
> Bohdan
>
Bohdan Ganicky
unread,
Feb 10, 2009, 7:15:34 AM2/10/09
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to jQuery UI Development
Paul Bakaus fixed both issues already. Proof that reporting bugs is
very much useful. :)