3.2.0

Column resizing in strict mode with google chrome

Does not seem to be working. The column return to the original position. Any clue?
PMN
May 26,
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)
May 26,
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
May 27,
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)
May 29,

This topic is archived.

See also:


Back to support forum