3.2.0

Repeated column resizeing stuck on Firefox 11

Hello

I have a problem with grid column resizing. If I repeatedly resize a column with my mouse, it gets stuck to the cursor. It happens only if I resize the same spot multiple times. Any ideas on how to fix this?

Samething happens also if I try the example grid on your frontpage so I guess the problem isn't with my code :)

I'm using version 2.6 of aw.
Petri Pihlajamaa
April 17,
Hi everyone!

The problem continues also on Firefox 12. Any thoughts on how to fix the issue?
Petri Pihlajamaa
May 8,
I'm seeing this too. For me its much worse in FF 12 than 11.
CK
May 10,
A simple change to the AW.Grid.Separator "onmousedown" event handler seems to fix the problem. I added the " || AW.Gecko" clause to the IF statement shown below:

if (AW.opera || AW.konqueror || AW.gecko) {
        event.preventDefault();
        return false;
    }
CK
May 10,
Hi CK

Looks like it works for me too. Thanks for the help!
Petri Pihlajamaa
May 14,
Hi,

Is there a similar workaround for this problem for older versions of AW (like 2.0.1)?

The AW lib has changed so much I couldn't figure out the relevant code in v. 2.0.1 to try your fix.

Thanks!
SV
May 15,
Works for me, too. Thanks for your post!
Andy
May 16,
With latest AW 2.6.0, after 10 tries or so resizing columns, I hit this problem in Google Chrome as well. Added
AW.chrome
also to the list (from CK's workaround) and it seems to have fixed the problem.

Alex can you confirm if this is right fix? If this will be fixed in a future release?
SV
May 22,
Fixed in AW 2.6.1

http://www.activewidgets.com/javascript.forum.27297.0/activewidgets-2-6-1-released.html
Alex (ActiveWidgets)
October 17,

This topic is archived.

See also:


Back to support forum