Re: Inject css into frame

2016-04-12 Thread David
Can somebody help me out? I do appreciate it. On Sunday, April 10, 2016 at 10:10:13 AM UTC+8, David wrote: > > I have an original html like below: > > > > > > > > > > > > > > > > > >

Re: Web App Launch View Activator displays repeatedly in Progress tab on Eclipse and debugging is very slow

2016-04-12 Thread vinnyjames
Here's the stack overflow question: http://stackoverflow.com/questions/24409791/web-app-launch-view-activator-displays-repeatedly-in-progress-tab-on-eclipse-d On Wednesday, July 30, 2014 at 7:36:30 AM UTC-7, Punit Shukla wrote: > > Hi Paul, > > Did you get any solution for your problem? I am

Help running DevMode with GWT 2.7 and no bookmarklets

2016-04-12 Thread Thomas Broyer
If you were already using CodeServer, then just add -launcherDir pointing to the exploded war folder in your Tomcat. This will generate a new nocache.js overwriting the original one that will trigger SDM on load, so you have nothing to do but load your app. -- You received this message

Re: compilation error with 2.8.0-SNAPSHOT (guava problem)

2016-04-12 Thread Norbert Sándor
Thanks for the quick reply. Then I check the classpath of the Maven build again (although I've already done it and found no conflicts or duplications). -- Norbi On Tuesday, 12 April 2016 21:55:24 UTC+2, Juan Pablo Gardella wrote: > > 20-SNAPSHOT > > On Tue, 12 Apr 2016 at 14:48 Norbert Sándor

Re: compilation error with 2.8.0-SNAPSHOT (guava problem)

2016-04-12 Thread Juan Pablo Gardella
20-SNAPSHOT On Tue, 12 Apr 2016 at 14:48 Norbert Sándor wrote: > Maybe someone can help which guava version is the "supported" for > gwt-2.8.0-snapshot? > > Thanks, > Norbi > > > On Sunday, 10 April 2016 16:06:01 UTC+2, Norbert Sándor wrote: >> >> Hello, >> >> I use

Re: compilation error with 2.8.0-SNAPSHOT (guava problem)

2016-04-12 Thread Norbert Sándor
Maybe someone can help which guava version is the "supported" for gwt-2.8.0-snapshot? Thanks, Norbi On Sunday, 10 April 2016 16:06:01 UTC+2, Norbert Sándor wrote: > > Hello, > > I use the latest gwt-2.8.0-snapshot + guava-20.0-snapshot. > When I perform GWT compilation in Eclipse (by directly

Re: What needs to be done after a successful login

2016-04-12 Thread JonL
There are multiple options you could take. One would be to use something like spring and redirect to a separate url. Another might be to use code splitting and at the time of login, download the rest of the page. Finally, you could just download all the code in one module, whether the user

Help running DevMode with GWT 2.7 and no bookmarklets

2016-04-12 Thread shaun . tarves
Hi guys - I've spent more than a day now on a quest to get DevMode running properly for GWT 2.7 with my multi-module GWT application. NOTE: I can run SDM completely fine using the bookmarklets, but I'm not sure that's the right way to do things now. As background, I use the gwt-maven-plugin

Re: Opening a File Chooser (using FileUpload Widget) from a DialogBox

2016-04-12 Thread iza
setModal(false) on the dialog box. The modal DialogBox is poorly implemented and interferes with other events on the page. -- 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

Re: [gwt-contrib] Re: JsInterop is pruning non readed properties

2016-04-12 Thread 'Goktug Gokdogan' via GWT Contributors
Changing the default will not solve the SDM vs Prod problem (i.e. what if I disabled it?). The default is sub-optimal but helps in the grand scheme of things (There is a comment thread in the Doc discussing why the default is chosen in the current way). SDM already doesn't export members to

Re: Upgrade validation-api dependency to 1.1.0.Final

2016-04-12 Thread Ali Akhtar
Please consider making that hibernate upgrade a priority. We are hugely behind on that upgrade, Hibernate 4 was ages ago. Today I'm experiencing this problem, but a lot of people are going to experience this in future, because every project is going to be on a newer version of validation-api. If

[gwt-contrib] Re: JsInterop is pruning non readed properties

2016-04-12 Thread Paul Stockley
I think this flag in its current form is evil. If you forget it your code will work in SDM and not in production. I would recommend one of the following: 1) Have export on by default and have a flag to turn it off 2) or have SDM prune the non-exported classes from the code. On Tuesday, April

[gwt-contrib] Re: JsInterop is pruning non readed properties

2016-04-12 Thread Ignacio Baca Moreno-Torres
Compiled using 2.8.0-SNAPSHOT and without -generateJsInteropExports. With -generateJsInteropExport works! (i.e.: Foo.bar field is not pruned) On Tuesday, April 12, 2016 at 3:57:10 PM UTC+2, Ignacio Baca Moreno-Torres wrote: > > This code: > public class Client implements EntryPoint { >

[gwt-contrib] Re: JsInterop is pruning non readed properties

2016-04-12 Thread Ignacio Baca Moreno-Torres
This happens with the last snapshot and not, I'm not using ' -generateJsInteropExports'. There is a bit longer explanation and discussion in the gwt gitter room (https://gitter.im/gwtproject/gwt). On Tuesday, April 12, 2016 at 5:12:45 PM UTC+2, Paul Stockley wrote: > > Also, forgot to mention.

Opening a File Chooser (using FileUpload Widget) from a DialogBox

2016-04-12 Thread Julio Heitor Nobrega
Dear friends, i am having some problemas using the *FileUpload *widget and the *DialogBox*. If i try to open the file chooser to choose a image from the file system from FileUpload like this: new *ClickHandler*() { @Override

[gwt-contrib] Re: JsInterop is pruning non readed properties

2016-04-12 Thread Paul Stockley
Also, forgot to mention. I had quite a few issues with the Beta that went away in the latest snapshot build. On Tuesday, April 12, 2016 at 11:11:17 AM UTC-4, Paul Stockley wrote: > > Are you compiling with -generateJsInteropExports ? > > On Tuesday, April 12, 2016 at 9:57:10 AM UTC-4, Ignacio

[gwt-contrib] Re: JsInterop is pruning non readed properties

2016-04-12 Thread Paul Stockley
Are you compiling with -generateJsInteropExports ? On Tuesday, April 12, 2016 at 9:57:10 AM UTC-4, Ignacio Baca Moreno-Torres wrote: > > This code: > public class Client implements EntryPoint { > Console log = Browser.getWindow().getConsole(); > > @Override public void onModuleLoad() { >

Re: Upgrade validation-api dependency to 1.1.0.Final

2016-04-12 Thread Jens
> GWT is on 1.0.0.1.GA. Isn't that going to be mostly compatible with > 1.1.0? It seems like this would just require changing the version in a > pom, and the rest would work. I would be really surprised if there are any > breaking changes between these versions. > Upgrading Validation API

[gwt-contrib] JsInterop is pruning non readed properties

2016-04-12 Thread Ignacio Baca Moreno-Torres
This code: public class Client implements EntryPoint { Console log = Browser.getWindow().getConsole(); @Override public void onModuleLoad() { Foo foo = new Foo(); foo.bar = 666; log.log(foo); } @JsType public static class Foo { public int bar;

Re: Recommendation for GWT and AppEngine communication

2016-04-12 Thread Paul Mazzuca
Thanks Thomas. This insight is extremely helpful. On Tuesday, April 12, 2016 at 3:41:23 AM UTC-7, Thomas Broyer wrote: > > > > On Monday, April 11, 2016 at 10:59:34 PM UTC+2, Paul Mazzuca wrote: >> >> RestyGWT is enticing considering how well it decouples the client and the >> server.

Re: Upgrade validation-api dependency to 1.1.0.Final

2016-04-12 Thread Ali Akhtar
It would make my workflow very complicated to have them in separate modules, as then I'd also need a 3rd project for shared code. It so happens that mostly DTOs would be in the shared code, and the DTOs would need to be annotated w/ Validation annotations. Where do they get these annotations,

Re: Upgrade validation-api dependency to 1.1.0.Final

2016-04-12 Thread Thomas Broyer
On Tuesday, April 12, 2016 at 11:21:39 AM UTC+2, Ali Akhtar wrote: > > gwt-user has a dependency to an older version of > javax-validation:validation-api. This is causing a lot of issues, and > causing builds to break with Dropwizard. See: >

Re: Recommendation for GWT and AppEngine communication

2016-04-12 Thread Thomas Broyer
On Monday, April 11, 2016 at 10:59:34 PM UTC+2, Paul Mazzuca wrote: > > RestyGWT is enticing considering how well it decouples the client and the > server. Thanks. I am still curious about a community (I guess I mean > steering committee) recommendation though, especially if there are plans

Upgrade validation-api dependency to 1.1.0.Final

2016-04-12 Thread Ali Akhtar
gwt-user has a dependency to an older version of javax-validation:validation-api. This is causing a lot of issues, and causing builds to break with Dropwizard. See: http://stackoverflow.com/questions/36568756/maven-dependency-management-being-ignored-at-test-time-works-at-runtime Please

Re: Recommendation for GWT and AppEngine communication

2016-04-12 Thread David
I'm using GWTP Rest Dispatch. It works almost the same as RestyGWT but it depends on GWT-Jackson for serialisation/deserialisation. GWT Jackson supports more features of Jackson than RestyGWT. On Tue, Apr 12, 2016 at 12:16 AM Vassilis Virvilis wrote: > I am using GWT +