:: Forum >>

Column resizing in strict mode with google chrome

Does not seem to be working. The column return to the original position. Any clue?
PMN
Tuesday, May 26, 2009
I cannot reproduce this - everything works fine here (Chrome 2.0.172.28, Vista). Do you have this issue with standard examples or only with your own code?
Alex (ActiveWidgets)
Tuesday, May 26, 2009
I used ActiveWidget 2.5.3 and Google Chrome 2.0.172.28

I took the quickref/grid.htm and changed the document type to :

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">

I can't resize columns
PMN
Wednesday, May 27, 2009
Yes, apparently this is a bug related to mixed case id in this example.

Workaround: assign object ids in lower case always.

Fix: replace -

if (AW.webkit) {
selector = selector.toLowerCase();
}


with

if (AW.webkit && AW.quirks) {
selector = selector.toLowerCase();
}


in /source/lib/grid/_size.js line 92-94
Alex (ActiveWidgets)
Friday, May 29, 2009

This topic is archived.


Back to support forum

Forum search