I encountered another bug with the resizable (that is now working in FF3 with
the layout changes) for IE6 and IE7. When resizing the elements would jump
to the bottom of my scrolling div. The solution was a code fix for the
ui.resizable.js. (all these ui components where from the 1.6rc2 download
fyi)
By changing the line 280 from:
o.documentScroll = { top: $(document).scrollTop(), left:
$(document).scrollLeft() };
to:
o.documentScroll = { top: this.element.scrollTop(), left:
$(document).scrollLeft() };
This change made the resizable work for my scrolling div in FF3, IE6, and
IE7.
--
View this message in context:
http://www.nabble.com/divs-get-magically-repositioned-when-using-draggable-and-resizable-inside-a-scrolling-div-tp19579938s27240p20113234.html
Sent from the jQuery UI Discussion mailing list archive at Nabble.com.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---