Snap scrolling/dragging issue

This post has 7 replies

Not Ranked
Posts: 8
SimonCoope Posted: Wed Aug 17, 2005 @ 3:41 AM
Hi:

I have a page that has two docking areas. When I load a few snaps into either dock and scroll down the page, then try and drag a snap, the dragging box is not taking account of the amount I've scrolled.

Does anyone else have this problem? Is it a bug with the snap control or is it something I'm doing wrong?

Please help!

Thanks

Simon
Not Ranked
Posts: 8
SimonCoope Posted: Wed Aug 17, 2005 @ 3:44 AM
Sorry...

Should have said. This only happens in IE (ver 6), the dragging area is in the correct position in Firefox.

Thanks

Simon
Not Ranked
Posts: 8
SimonCoope Posted: Tue Aug 30, 2005 @ 3:09 AM
Found the problem...

Not all versions of IE support the scrolling position in the same way. Some use document.documentElement.scrollTop and some use document.body.scrollTop. So I've changed the A573X288.js file as follows (Col 1362):

if(cart_browser_ie)
{
if(document.documentElement.scrollTop)
{
qzp = event.clientX + document.documentElement.scrollLeft;
qzf = event.clientY + document.documentElement.scrollTop;
}
else
{
qzp = event.clientX + document.body.scrollLeft;
qzf = event.clientY + document.body.scrollTop;
}
}
else
{
qzp = qzim.pageX;
qzf = qzim.pageY;
}

Now works fine in IE and Firefox...

Thanks

Simon
Not Ranked
Posts: 3
felixcsm Posted: Wed Apr 16, 2008 @ 8:18 PM
I have the same problem.I have only dll in my project how can I implement this solution?
Top 10 Contributor
Posts: 6,424
hwan Posted: Mon Apr 21, 2008 @ 1:40 PM
I'll try to get the priority of this problem raised with the developers.

I apologize for the inconvenience.
Top 150 Contributor
Posts: 48
xxxtreme_pasaway Posted: Mon Jul 28, 2008 @ 7:22 PM
is this fixed :) ?
mmmm... let me think about that....
Top 10 Contributor
Posts: 6,424
hwan Posted: Mon Aug 11, 2008 @ 12:48 PM
A fix has not yet been implemented, as of Web.UI 2008.1.1202.
Top 500 Contributor
Posts: 21
dkpodder Posted: Wed Dec 8, 2010 @ 2:35 AM
Hi.

I'm having the same issue, seems not to be solved in 2010.1...

How do You edit the file as described, where is it located ?


Regards

Kim
Page 1 of 1 (8 items)