Re: How to access non standard objects in Elemental2?

2020-08-19 Thread 'Michael Harray' via GWT Users
Great thank you, works a treat :) On Monday, August 17, 2020 at 9:53:28 AM UTC+12 t.br...@gmail.com wrote: > > > On Sunday, August 16, 2020 at 11:41:18 PM UTC+2, Michael Harray wrote: >> >> Hello, I'm currently working on PWA functionality in our GWT app, trying >> to utilise Elemental2 /

Re: GWT Server and debug

2020-08-19 Thread Craig Mitchell
> When I still used Eclipse I always used the plugin from Brandon Donnelson : https://github.com/gwt-plugins/gwt-eclipse-plugin I'm guessing that's the same one that's in the install instructions: http://www.gwtproject.org/usingeclipse.html#installing -- You received this message

Re: Do Google Web Toolkit's touch events support Windows tablets?

2020-08-19 Thread Craig Mitchell
I had a lot of problems with touch events. However, they weren't GWT's fault, just different browsers doing different things. I ended up with this: // Listen for the screen touch start mainPanel.addDomHandler(event -> { handleScreenTouches(event.getChangedTouches(), true); },