Re: GWT Migration from 2.1.0 to 2.9.0

2022-09-26 Thread Thomas Broyer
Add the script tags to your HTML (alternatively, use ScriptInjector in our entrypoint), but if they're not loaded, chances are that the Ext global is not defined, so Ext.BLANK_IMAGE_URL=… fails with the above-mentioned error. On Monday, September 26, 2022 at 2:54:16 PM UTC+2 patil.p...@gmail.com

Re: GWT Migration from 2.1.0 to 2.9.0

2022-09-26 Thread Pramod Patil
One more thing I noticed is, we have script tags in app.gwt.xml like below

Re: GWT Migration from 2.1.0 to 2.9.0

2022-09-26 Thread Pramod Patil
Thank you for your response, I tried to figure out changes but as part of this migration apart from version upgrades I have added/edited below properties in app.gwt.xml. other properties are present like apart from these changes, I haven't changed any code also I could see entries for Ext.

Re: GWT Migration from 2.1.0 to 2.9.0

2022-09-26 Thread Jens
"Cannot set properties of undefined" is the javascript equivalent of Java NullPointerException. So in your code something tried to set the property "BLANK_IMAGE_URL" on "null". -- J. patil.p...@gmail.com schrieb am Montag, 26. September 2022 um 08:48:31 UTC+2: > Hi > I having beginners leve