foyb schrieb:
> Hi, i have almost the same problem. code works fine on ffox >= 2,
> safari, opera, internet explorer 6 (!!!) but seems to trouble with
> internet explorer 7, in my case i use sortable to drag <div> elements
> in to other div elements and while i drag an item the page has a
> complete white overlay.
>
> KR. you seem to have solved the problem - i could not find any
> glitches with IE 7, how did you solve this?
>
solved it:
i used in the
$(something).sortable({
*magic*
});
the start function to highlight the element which is dragged by adding a
class to this specific element. for what reason ever this caused the
<body> (?) to be in front OR all other elements to loose all dimensions
(width=0, height=0...).
fixed this by
if (!$.browser.ie && $.browser.version != 7)
so now it works without highlighting the dragged element in IE 7
problem accured with jquery 1.2.6 + jquery ui 1.5.2
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---