Widget Memory Leak (possibly caused by ErraiBus?)

2016-01-15 Thread andrew . buck
I am using a tab panel and experiencing a memory leak. When a tab panel is closed, that panel is removed from its parent, but it remains in memory. Is there any call that I need to make so that the panel is garbage collected? The only reference I can find that would remain after that point is

State of Elemental

2016-09-25 Thread Andrew Buck
I'm trying to understand if I can use Elemental in my project. I see this on the Elemental GitHub page: Currently, Elemental is generated from the WebKit project's WebIDL binding > definitions which are used also > by the Dart project. Because of this, vendor prefixed APIs also show up >

Re: UnableToCompleteException

2019-04-02 Thread Andrew Buck
That fixed it. Thank you!! On Tuesday, April 2, 2019 at 6:14:07 PM UTC-7, Rob Newton wrote: > > I wonder if the GWT unit cache is corrupted? Try removing directories > named gwt-unitCache and/or /tmp/gwt-cache-* (linux). > > On Tuesday, April 2, 2019 at 6:32:10 AM UTC+11, An

UnableToCompleteException

2019-04-01 Thread Andrew Buck
I am getting an exception when trying to use super dev mode that I don't understand. Stack trace is below. Compiling 1 permutation Compiling permutation 0... [ERROR] Unexpected internal compiler error java.lang.NullPointerException at

Re: What is the advantage of GWT 3.0?

2019-06-03 Thread Andrew Buck
Sounds great! Thanks! On Sunday, June 2, 2019 at 3:44:23 PM UTC-7, Peter Donald wrote: > > > > On Sun, Jun 2, 2019 at 12:59 PM Andrew Buck > wrote: > >> I love GWT 2.8 and I appreciate all the work that the community has put >> into it as well as the wo

Re: GWT - Still Active ?

2019-06-01 Thread Andrew Buck
GWT is not dead! It's simply suffering from PR misunderstanding. People think that you have to use the old widget system to use GWT, but you don't. Just use Elemento instead of widgets and REST calls instead of RPC. Regardless of what happens with GWT 3, using GWT 2.8 is future proof since it

What is the advantage of GWT 3.0?

2019-06-01 Thread Andrew Buck
I love GWT 2.8 and I appreciate all the work that the community has put into it as well as the work towards GWT 3.0. I'm trying to understand what the advantage of GWT 3.0 is though. It seems like GWT 3.0 is a subset of GWT 2.8 with a different compiler under the covers. How is the closure

Re: GWT - Still Active ?

2019-06-02 Thread Andrew Buck
Debugging of both the server and client code works great. I'm not sure why it doesn't work for you. Client side debugging is done in the browser console using source maps that are automatically generated by the GWT compiler. On Saturday, June 1, 2019 at 3:22:09 PM UTC-7, Edson Richter wrote: >

Re: Execution order of cache.js versus other script tags

2019-12-11 Thread Andrew Buck
Thanks! On Wednesday, December 11, 2019 at 2:45:30 AM UTC-8, Jens wrote: > > Usually you would use GWT's ScriptInjector together with ClientBundle + > TextResource/ExternalTextResource. That way you can either embed your > external JS into the GWT JS (TextResource) so it downloads as part of

Execution order of cache.js versus other script tags

2019-12-10 Thread Andrew Buck
My GWT code uses a an external javascript library through JsInterop and I want that library to download in parallel with my cache.js file, but execute before the cache.js file does. The problem is that the nocache.js injects the cache.js file into the page and any injected script tags are

i18n Failing

2020-01-31 Thread Andrew Buck
I am trying to add a second locale to my GWT app, but I'm unable to make it work. Up until now, I've had: And now if I change it to: And add a tag in the page header: I still always see the page in English. If I instead do: Then I always see the page in Spanish. The tag is

Re: i18n Failing

2020-01-31 Thread Andrew Buck
tations and/or in the non-suffixed > .properties file (i.e. rename FixedStrings_en.properties to > FixedStrings.properties). > > On Friday, January 31, 2020 at 10:36:48 AM UTC+1, Andrew Buck wrote: >> >> I am trying to add a second locale to my GWT app, but I'm unable to make >> it