Ticket #2059 (closed bug: fixed)
ui.mouse: accounting for parent scrollLeft/scrollTop
| Reported by: | Max_B | Owned by: | paul |
|---|---|---|---|
| Priority: | major | Milestone: | 1.2.2 |
| Component: | ui | Version: | 1.2.1 |
| Keywords: | Cc: | ||
| Needs: | Review |
Description
This report is very close to the #2052. I open a separate because this is not related to fixed parent. In an absolute div with fixed width and scroll: auto; the draggable inside are not correctly positioned if the div is scrolled. The wrong offset comes is the scrollLeft/scrollTop value.
I fixed it for my use, without further testing of nested blocks with following code: ui.mouse.js, line 142 of rev 3626
var cp = a.parentNode;
while (cp) {
if(cp.style && ($(cp).css('position') == 'relative' || $(cp).css('position') == 'absolute')) {
o.pp = cp;
o.po = $(cp).offset();
o.ppOverflow = !!($(o.pp).css('overflow') == 'auto' || $(o.pp).css('overflow') == 'scroll'); //TODO!
//Max_B
if (o.ppOverflow) {
o.po.left -= cp.scrollLeft;
o.po.top -= cp.scrollTop;
}
//Max_B
break;
}
cp = cp.parentNode ? cp.parentNode : null;
};
Lines added are surrounded by //Max_B comments.
Change History
Note: See
TracTickets for help on using
tickets.
