Hello,
I am having a problem where the drop event of the droppable is not
fired. My page is big and I tried to copy the parts to a new page to
reproduce the problem, however when running the stripped page, it
would work. I am not really sure what to check for anymore. All other
events are being fired. Here is how I defined my draggable/droppables.
// this is the draggable.
var id = "#someId"
$(id).draggable(
{
helper: 'clone'
});
// this is the droppable
$(".zone").droppable(
{
accept: function(draggable) { return true },
drop: function(ev, ui)
{
alert("T");
},
over: function(ev, ui)
{
//debugger;
},
out: function(ev, ui)
{
//debugger;
},
activate: function(ev, ui)
{
//debugger;
},
deactivate: function(ev, ui)
{
//debugger;
}
});
Any idea, how I can debug this issue?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---