[gwt-contrib] Upgraded from GWT 2.6 to 2.8 - now Chrome Extension API doesn't work...

2017-04-27 Thread TimOnGmail
Hello all... I'm a developer on a project that uses GWT. We had been using GWT 2.6 for a long time, and finally moved to GWT 2.8 w/Java 1.8. Part of this project is a Chrome extension, where our web app needs to communicate with the extension. This was working fine until we upgraded out

Re: GWT 2.8.1 release

2017-04-27 Thread Eric Nissan
I was running 2.8.0, everything was fine. now that I upgraded to 2.8.1, my gwt unit tests are failing: Anything I need to add? java.lang.NoClassDefFoundError: com/google/gwt/dev/util/arg/ArgHandlerFilterJsInteropExports at

Chrome Extension Message Passing API no longer working in GWT 2.8...?

2017-04-27 Thread TimOnGmail
Hello all... I'm a developer on a project that uses GWT. We had been using GWT 2.6 for a long time, and finally moved to GWT 2.8 w/Java 1.8. Part of this project is a Chrome extension, where our web app needs to communicate with the extension. This was working fine until we upgraded out

Trying to run Super Dev Mode in Server

2017-04-27 Thread diego
Hi, I've made a deploy of my GWT project (2.8) in Google App Engine. When loading host page in GAE i get this error: "Couldn't load "my entrypoint" from Super Dev Mode server at "my GAE URL server:9876". I'm using GWT Eclipse Plugin and Google Cloud Tools for Eclipse Plugin. It seems

Re: CAn I easily integrate Angular JS with GWT and will it work flawlessly and efficiently.

2017-04-27 Thread harshyadav
Yes, you can (for Angular 2): https://github.com/ltearno/angular2-gwt http://lteconsulting.fr/angular2boot/ You can make GWT work with any javascript framework (not just angular). On Thursday, April 27, 2017 at 7:39:55 AM UTC-4, Sachin Chaudhari wrote: > > CAn I easily integrate Angular JS with

context in GWT compiled javascript

2017-04-27 Thread David
I have a very special requirement. My customer has a very old web application which only runs IE8. This customer doesn't allow me to change its source code except that I can add a

Re: How to use custom elements (web components) with JsInterop and Elemental 2?

2017-04-27 Thread Anders Forsell
Solved! Had to remind myself of having to assign my custom element to the window object, see https://github.com/gwtproject/gwt/issues/9500 .i.e in my HTML: customElements.define("my-app", MyApp); window.MyApp = MyApp; // This additional line is required .. and in GWT I had to use

How to use custom elements (web components) with JsInterop and Elemental 2?

2017-04-27 Thread Anders Forsell
Hello again, I have a custom element defined in HTML and trying to communicate with it from GWT and with JsInterop. Similar to how I can create a div element and cast it to the Elemental 2 HTMLDivElement, I have defined MyAppElement extending Elemental 2 HTMLElement and using the same

Re: Unable to add a new module to the webapp using Eclipse

2017-04-27 Thread Sachin Chaudhari
I think first try same process with GWT 2.7. then see whats the effect. On Thursday, April 27, 2017 at 12:12:36 AM UTC+5:30, HS wrote: > > Hello, > > I created a sample GWT webapp using the Eclipse plugin, and it runs > perfectly. > > But when I try adding a new module by, > > a)

CAn I easily integrate Angular JS with GWT and will it work flawlessly and efficiently.

2017-04-27 Thread Sachin Chaudhari
CAn I easily integrate Angular JS with GWT and will it work flawlessly and efficiently. Please reply. -- 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

Re: GWT 2.8.1 - Could not find artifact org.codehaus.mojo:gwt-maven-plugin:jar:2.8.1

2017-04-27 Thread Ignacio Baca Moreno-Torres
Actually, since this commit, https://github.com/gwt-maven-plugin/gwt-maven-plugin/commit/8b456fedae820cfdcdc581d18900f7244cf51234 using a gwt-dev and gwt-user explicit dependency in your module should disable auto-inclusion of gwt dependencies, so the plugin should work. On Thu, Apr 27, 2017 at

Re: How to get the Document object with Elemental2

2017-04-27 Thread Anders Forsell
DomGlobal.document did the trick. Thanks! On Thursday, April 27, 2017 at 10:35:45 AM UTC+2, Jens wrote: > > If I remember correctly the class is named DomGlobal. > > -- J. > -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from

Re: How to get the Document object with Elemental2

2017-04-27 Thread Jens
If I remember correctly the class is named DomGlobal. -- J. -- 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...@googlegroups.com. To

Re: GWT 2.8.1 - Could not find artifact org.codehaus.mojo:gwt-maven-plugin:jar:2.8.1

2017-04-27 Thread Thomas Broyer
On Thursday, April 27, 2017 at 9:30:36 AM UTC+2, Ignacio Baca Moreno-Torres wrote: > > Yep, should be released... but it is pretty weird that the plugin should > be released on each GWT version, this and other important issues like > better multi-module support was the motivation to start the

How to get the Document object with Elemental2

2017-04-27 Thread Anders Forsell
Hi, I'm currently migration from Elemental to Elemental2 beta and have code that uses the static Browser operations such as Browser.getDocument(). How would I get the Window or Document object with Elemental2 ? -- You received this message because you are subscribed to the Google Groups "GWT

[gwt-contrib] Re: CodeServer is using about 500 threads ?

2017-04-27 Thread Jens
Most likely these are file/directory watcher threads created by Java itself because SDM uses Java's WatchService to detect changes. You can use -Dgwt.watchFileChanges=false to turn it off. GWT will then do a full directory scan to detect changes. -- J. -- You received this message because

[gwt-contrib] CodeServer is using about 500 threads ?

2017-04-27 Thread stuckagain
Just wondering, why does the CodeServer allocate 500 threads on my computer ? Isn't that a bit over the top to host one application that will only server one user once in a while ? -- You received this message because you are subscribed to the Google Groups "GWT Contributors" group. To

Re: GWT 2.8.1 - Could not find artifact org.codehaus.mojo:gwt-maven-plugin:jar:2.8.1

2017-04-27 Thread Ignacio Baca Moreno-Torres
Yep, should be released... but it is pretty weird that the plugin should be released on each GWT version, this and other important issues like better multi-module support was the motivation to start the new generation plugin by Thomas Broyer (https://github.com/tbroyer/gwt-maven-plugin). We'll