I have a problem with drag and drop in IE7.

I have a dragged div and a dropRemote div, both inside the same view.

In IE7 the most strangest thing happens. I am able to drag and drop an
element, but when I try to drag the second one an error occurs. This
is the notification from IE7:

Line: 3082
Line: 7
Error: Unspecified error
Code: 0

What does this mean?
I looked into the prototype file and it seems that it happens at this
function:

function (element) {
    var valueT = 0, valueL = 0;
    do {
        valueT += element.offsetTop || 0;
        valueL += element.offsetLeft || 0;
        element = element.offsetParent;
    } while (element); // line 3082 !!!
    return [valueL, valueT];
}

It works fine in Mozilla. Does anyone have any idea of what's going
on?

Thanks in advance!


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" 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/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to