Re: Determine widget size after load

2015-05-21 Thread ehodges
The deferred command works most of the time, but not always. I'm seeing a zero height and width about 5% of the time in Chrome. Anyone have other ideas? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and

Re: Have GWT 2.7.0 SuperDevMode reuse old compile-n files from last run

2015-05-21 Thread Thomas Broyer
On Thursday, May 21, 2015 at 1:48:30 PM UTC+2, salek.tala...@googlemail.com wrote: > > Answering my own question: > This seems to work if you start SDM from the Eclipse Plugin (=as Web > Application) and not as normal Java Application. > Also, you do not need the bookmarklets then, a recompile

Re: Have GWT 2.7.0 SuperDevMode reuse old compile-n files from last run

2015-05-21 Thread salek . talangi
Answering my own question: This seems to work if you start SDM from the Eclipse Plugin (=as Web Application) and not as normal Java Application. Also, you do not need the bookmarklets then, a recompile is triggered on browser refresh (tested FF26, GC42, IE11). -- You received this message becau

Re: Deferred Binding

2015-05-21 Thread Jens
For now you need a generator as the gwt-property-source project does. With GWT 2.8 SNAPSHOT you can simply do System.getProperty(""). Works for permutation properties as well as configuration properties. -- J. -- You received this message because you are subscribed to the Google Groups "Goog

Re: Deferred Binding

2015-05-21 Thread Alberto Mancini
Not sure if this is still the simpler method but https://github.com/realityforge/gwt-property-source provides access configuration properties in java. A. On Thu, May 21, 2015 at 11:49 AM Nam wrote: > Hi, > > I have run into a problem which I can't seem to find an answer to. > > I have a GWT mo

Deferred Binding

2015-05-21 Thread Nam
Hi, I have run into a problem which I can't seem to find an answer to. I have a GWT module with a defined property that I'm trying to access in a java class which extends com.gwtplatform.mvp.client.gin.DefaultModule. For example: In my GWT module, I have the property name headless: How w