Open GoogleCodeExporter opened 9 years ago
Ken, I found that in MiGen we did the workaround above but doesn't this require
the corresponding library anyway and where is it? Should it be included in the
webinf lib?
Original comment by mavrikis@gmail.com
on 21 Jan 2013 at 8:23
I 'll take this for now.
Original comment by mavrikis@gmail.com
on 21 Jan 2013 at 8:47
This has been fixed in the soon to be released GWT 2.5.1
see https://code.google.com/p/google-web-toolkit/issues/detail?id=7527
A workaround is to define
public abstract class GWTBridge extends com.google.gwt.core.shared.GWTBridge {
}
Original comment by ToonT...@gmail.com
on 21 Jan 2013 at 8:49
Yes I saw that but then where to define this just as in a new package/class
com.google.gwt.core.client.GWTBridge with the rest of the mmft code as you did
in MiGen?
And then how is this dealt since nowhere in the code there is an explicit
reference to GWTBridge?
Original comment by mavrikis@gmail.com
on 21 Jan 2013 at 8:54
The problem is that com.google.gwt.core.shared.GWTBridge is defined but
com.google.gwt.core.client.GWTBridge isn't.
So this workaround has to be in the com.google.gwt.core.client package.
de.uds.MonitorInterventionMetafora.client.monitor.filter.FilterGridRow.<init>(Fi
lterGridRow.java:39) triggers this by calling
com.extjs.gxt.ui.client.data.BaseModel.set(BaseModel.java:143) that eventually
does call GWTBridge.
Original comment by ToonT...@gmail.com
on 21 Jan 2013 at 11:58
OK. Thanks. Just realised this is because I am using 2.5.0.rc2 in 2.4 that
wasn't an issue (perhaps dealt differently)
Original comment by mavrikis@gmail.com
on 21 Jan 2013 at 12:00
This is not critical. Reverted to 2.4 and that is not an issue. Would try with
2.5.0 but then others will not be able to compile.
Original comment by mavrikis@gmail.com
on 21 Jan 2013 at 1:15
Original issue reported on code.google.com by
mavrikis@gmail.com
on 21 Jan 2013 at 8:07