Re: GWT into Spring Boot with remember-me is not working

2018-09-14 Thread Josep Llort Tella
I have also integrated GWT-SL but that not helped me to solve the issue ( here the link of this project in github https://github.com/ggeorgovassilis/gwt-sl ) -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and sto

Re: Why the GWT complier used so much memory?

2018-09-14 Thread Andrew Somerville
Good to know, I'm using Mojo's maven plugin, so that would explain the default of localWorkers = 4. On Friday, September 14, 2018 at 10:05:23 AM UTC-3, Thomas Broyer wrote: > > > > On Friday, September 14, 2018 at 2:25:44 PM UTC+2, Andrew Somerville wrote: >> >> To your point, regarding tuning t

Re: addWindowClosingHandler only working in IE

2018-09-14 Thread Frank
Indeed Thomas. Only IE seems to be showing the message (together with its own message). -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr

Re: Deferred Binding - Help!

2018-09-14 Thread Josselin Bardet
Hi As far has I know (I might be wrong), the generators are executed during the compilation of the web app. So I think you can't do that without recompiling you app. If you recompile your app, with all your plugins in your classpath, you can implement a generator that will scan for Pet implementa

Re: Deferred Binding - Help!

2018-09-14 Thread Thomas Broyer
On Friday, September 14, 2018 at 3:10:03 PM UTC+2, Matthew Bergshoeff wrote: > > Hi Everyone - I've been searching everywhere for a solution to this and > haven't been able to resolve it. I don't think I've properly wrapped my > head around the issue, so hoping someone could provide some guidan

Deferred Binding - Help!

2018-09-14 Thread Matthew Bergshoeff
Hi Everyone - I've been searching everywhere for a solution to this and haven't been able to resolve it. I don't think I've properly wrapped my head around the issue, so hoping someone could provide some guidance. I am trying to build a modular GWT application - by that I mean that there will

Re: Why the GWT complier used so much memory?

2018-09-14 Thread Thomas Broyer
On Friday, September 14, 2018 at 2:25:44 PM UTC+2, Andrew Somerville wrote: > > To your point, regarding tuning the localWorkers parameter, I get > significant speedup going from the default of 4 localWorkers down to 2. > (i5-4460 Desktop CPU, 500 GB SSD and 32 GB of RAM). It doesn't matter wha

Re: addWindowClosingHandler only working in IE

2018-09-14 Thread Thomas Broyer
Note that the actual message will be ignored by more and more browsers, which will only display a generic popup whenever the message is non-null (or not empty). On Friday, September 14, 2018 at 11:03:39 AM UTC+2, Frank wrote: > > Okay > > Now I figured out how this works. You need to set a m

Re: Why the GWT complier used so much memory?

2018-09-14 Thread Andrew Somerville
To your point, regarding tuning the localWorkers parameter, I get significant speedup going from the default of 4 localWorkers down to 2. (i5-4460 Desktop CPU, 500 GB SSD and 32 GB of RAM). It doesn't matter what I set the heap limit to, the compilation appears to be memory bandwidth limited, o

Re: addWindowClosingHandler only working in IE

2018-09-14 Thread Frank
Okay Now I figured out how this works. You need to set a message to the event. Didn't figured this out reading the javadoc. Window.addWindowClosingHandler(event -> { if (Grid.hasUnsavedEdits()) event.setMessage(I18NMessages.getMessage(5107)); }); -- You received this message because you

Re: addWindowClosingHandler only working in IE

2018-09-14 Thread Frank
I am thinking the problem is in this below code. But I have not idea how fix this... Code is from com.google.gwt.user.client.Window /** * Adds a {@link ResizeEvent} handler. * * @param handler the handler * @return returns the handler registration */ public static HandlerRegistration ad

addWindowClosingHandler only working in IE

2018-09-14 Thread Frank
GWT 2.8.2 In below code neither of the Window.alerts gets triggered in Chrome, FF and Edge. This does not work neither while in SuperDevMode, or when fully compiled and deployed. Only works in IE The "go" alert is displayed by all browsers so I am sure the code was executed... Any ideas a