Re: GWT and Oracle

2016-10-05 Thread Hristo Stoyanov
Oracle/Sun has history of failures on the client side ... Oracle used to push ADF Faces, a JSF-bases library that went nowhere. Until soon, they were still thinking about MVC frameworks (remember JSF and Struts back in the day?), thank god someone reminded them it is 2016 and they dropped MVC

Re: [gwt-contrib] GWT Eclipse Plugin (V3) Shortcuts/Launchers

2016-10-05 Thread Ignacio Baca Moreno-Torres
This is how I think that newbies will understand it easier... I suppose the change is too big, but maybe some part might be interesting. Any way current state is pretty good! good work. I have re-ordered, leaving the classic devmode the last one. 1. GWT Super DevMode - a client side GWT CodeServer

Re: GSS changes aren't recognized in SDM

2016-10-05 Thread Thomas Broyer
IIRC, Eclipse does it for you automatically on save. FWIW, this is because resources can be filtered (placeholders replaced with property values) and/or relocated, so using the "sources" directly could cause issues. -- You received this message because you are subscribed to the Google Groups

Re: GSS changes aren't recognized in SDM

2016-10-05 Thread N Troncoso
Oh. I didn't know that was needed. It's a little inconvenient, but it's better than restarting the code server. Thanks! On Wednesday, October 5, 2016 at 11:28:39 AM UTC-4, Thomas Broyer wrote: > > Do you "mvn process-resources" when you change something in > src/main/resources? > > On

Re: Chrome says I need to download the developer plugin, but it won't let me.

2016-10-05 Thread harshyadav
The Developer plugin won't work in the recent versions of Chrome. (Dev mode is deprecated by most recent browsers). You should use the Super dev mode: http://www.gwtproject.org/articles/superdevmode.html On Wednesday, October 5, 2016 at 11:30:46 AM UTC-4, dal...@whippets.wwusd.org wrote: > >

Re: GSS changes aren't recognized in SDM

2016-10-05 Thread Thomas Broyer
Do you "mvn process-resources" when you change something in src/main/resources? On Wednesday, October 5, 2016 at 2:12:07 PM UTC+2, N Troncoso wrote: > > I'm starting a new project using GWT 2.8-rc2, and am setting up my GSS > resources. It all works and the pages render correctly, but if I

Chrome says I need to download the developer plugin, but it won't let me.

2016-10-05 Thread dalzinm
I've just recently started using GWT and the Google plugin for Eclipse for a school project, but I'm coming to a weird problem when trying to run programs in Chrome. When I made my first Hello World program, it worked perfectly fine, but then the next day when I tried to run it, it said I

Re: How to remove EventListener

2016-10-05 Thread Thomas Broyer
On Wednesday, October 5, 2016 at 12:59:53 PM UTC+2, Henrik wrote: > > Surprised at your reaction to this. I find myself doing the same more and > more as I'm using less and less widgets. Is there a better way when > dealing with non-widget elements? > Use JsInterop (and/or Elemental) to

call GWT compiler from servlet

2016-10-05 Thread David
How do I use GWT compiler from servlet? I want to use GWT compile to compile source and send the compiled javascript to web client like super dev debug mode in servlet? Thanks, David -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To

Re: GWT RC2 with Polymer: Issue while calling click handler from Java.

2016-10-05 Thread Thomas Broyer
On Wednesday, October 5, 2016 at 12:59:29 PM UTC+2, GAURAV GUPTA wrote: > > Hi All, > > I am using below code for creating my custom element, > > package com.test; > > import jsinterop.annotations.JsConstructor; > import jsinterop.annotations.JsMethod; > import jsinterop.annotations.JsType; > >

Re: NoClassDefFoundError (HttpSessionIdListener) when launching SDM, after switching from gwt-2.8.0-beta1 to rc2

2016-10-05 Thread Thomas Broyer
Or maybe adjust the classpathScope to include provided dependencies? http://tbroyer.github.io/gwt-maven-plugin/devmode-mojo.html#classpathScope / http://tbroyer.github.io/gwt-maven-plugin/codeserver-mojo.html#classpathScope (see also the samples from the GWT SDK, or the POM generated by

Re: NoClassDefFoundError (HttpSessionIdListener) when launching SDM, after switching from gwt-2.8.0-beta1 to rc2

2016-10-05 Thread N Troncoso
For anyone with the same issue as me, I had to remove the *provided* in the dependency management for javax.servlet On Monday, October 3, 2016 at 9:22:48 AM UTC-4, N Troncoso wrote: > > > I'm having the same issue as Boris, except my dependency tree shows that > I'm using 3.1: > > [INFO] +-

GSS changes aren't recognized in SDM

2016-10-05 Thread N Troncoso
I'm starting a new project using GWT 2.8-rc2, and am setting up my GSS resources. It all works and the pages render correctly, but if I change a GSS file, the changes aren't loading when I refresh the browser. I have my ResourceBundles in *src/main/java/com/company/project/client/resources*

Re: How to remove EventListener

2016-10-05 Thread Henrik
Surprised at your reaction to this. I find myself doing the same more and more as I'm using less and less widgets. Is there a better way when dealing with non-widget elements? On Tuesday, October 4, 2016 at 11:57:24 AM UTC+2, Thomas Broyer wrote: > > > > On Tuesday, October 4, 2016 at

GWT RC2 with Polymer: Issue while calling click handler from Java.

2016-10-05 Thread GAURAV GUPTA
Hi All, I am using below code for creating my custom element, package com.test; import jsinterop.annotations.JsConstructor; import jsinterop.annotations.JsMethod; import jsinterop.annotations.JsType; import com.google.gwt.event.dom.client.ClickEvent; import