google-code-export / gwt-ext

Automatically exported from code.google.com/p/gwt-ext
0 stars 0 forks source link

Resizing Grid Columns in IE6 causes js errors #82

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Create any grid
2. Run in IE6
3. Resize Column

What is the expected output? What do you see instead?  Runs fine in
Firefox, but get js error in IE6 when js debugging on.  I've also tested
this in your Showcase example and it does the same when resizing the grid

What version of the product are you using? On what operating system? v.
0.9.1 on Windows XP 

Please provide any additional information below.

Original issue reported on code.google.com by nvoskerj...@sbcglobal.net on 24 Aug 2007 at 10:31

GoogleCodeExporter commented 9 years ago
This has been fixed in SVN a while ago. Read this on how to build from SVN :
http://code.google.com/p/gwt-ext/wiki/BuildInstructions 

Original comment by sanjiv.j...@gmail.com on 24 Aug 2007 at 10:35

GoogleCodeExporter commented 9 years ago
I tried to build from svn but it looks like some Object were deleted and there 
are
left over references to them....

[gwt.javac] C:\Documents and Settings\NTVoskeritchian\gwt-ext\trunk\main\test\co
m\gwtext\client\JsonStoreTest.java:37: cannot find symbol
[gwt.javac] symbol  : class StringField
[gwt.javac] location: class com.gwtext.client.JsonStoreTest
[gwt.javac]                 new StringField("summary"),
[gwt.javac]                     ^
[gwt.javac] C:\Documents and Settings\NTVoskeritchian\gwt-ext\trunk\main\test\co
m\gwtext\client\JsonStoreTest.java:38: cannot find symbol
[gwt.javac] symbol  : class DateField
[gwt.javac] location: class com.gwtext.client.JsonStoreTest
[gwt.javac]                 new DateField("start"),
[gwt.javac]                     ^
[gwt.javac] C:\Documents and Settings\NTVoskeritchian\gwt-ext\trunk\main\test\co
m\gwtext\client\JsonStoreTest.java:39: cannot find symbol
[gwt.javac] symbol  : class DateField
[gwt.javac] location: class com.gwtext.client.JsonStoreTest
[gwt.javac]                 new DateField("end")}
[gwt.javac]                     ^
[gwt.javac] Note: C:\Documents and Settings\NTVoskeritchian\gwt-ext\trunk\main\t
est\com\gwtext\client\form\FieldTest.java uses or overrides a deprecated API.
[gwt.javac] Note: Recompile with -Xlint:deprecation for details.
[gwt.javac] 11 errors

BUILD FAILED
C:\Documents and Settings\NTVoskeritchian\gwt-ext\trunk\build.xml:52: The follow
ing error occurred while executing this line:
C:\Documents and Settings\NTVoskeritchian\gwt-ext\trunk\build.xml:24: The follow
ing error occurred while executing this line:
C:\Documents and Settings\NTVoskeritchian\gwt-ext\trunk\main\build.xml:37: Compi
le failed; see the compiler error output for details.

Original comment by nvoskerj...@sbcglobal.net on 24 Aug 2007 at 11:01

GoogleCodeExporter commented 9 years ago
The data type class names under the data package have been changed to end with 
"Def"
. So use StringFieldDef instead of StringField etc. This was done to avoid the 
same
class name of DateField and Field from the data package and form package. 
Search the
forum for the entire discussion.

Original comment by sanjiv.j...@gmail.com on 25 Aug 2007 at 12:43