Re: non-updatable widget

2016-02-13 Thread Velusamy Velu
I would concur with Thomas Broyer. If you are new to GWT I would recommend using the latest stable version 2.7. I would also recommend UiBinder instead of directly manipulating the widgets. On Friday, February 12, 2016 at 7:50:31 AM UTC-5, John Harrison wrote: > > I'm new to GWT and working wi

Re: GWT CssResource not propagating width:calc(x) property

2016-02-13 Thread Stefan Falk
Unfortunately GWT 2.8.0 still does not support that feature. Had to use literal("") as well here. On Saturday, 10 August 2013 22:23:26 UTC+2, Wayne Rasmuss wrote: > > For anyone who cares the final css looks like this: > > I'm actually thinking of trying position relative and using the same calc

Add GWT to an existing app engine project?

2016-02-13 Thread sdfdsf dsfsdfds
Hi, I have an existing app engine project, and I'm not sure if it's possible to incorporate GWT without refactoring the package layout. My app engine project looks like this: /MyProject /src /main /java /com /co

Re: GWT CssResource not propagating width:calc(x) property

2016-02-13 Thread Jens
> Unfortunately GWT 2.8.0 still does not support that feature. Had to use > literal("") as well here. > You are still using Css right? According to https://github.com/google/closure-stylesheets/issues/59 closure stylesheet should support and thus GWT GSS should support it. -- J. -- You re

Re: Add GWT to an existing app engine project?

2016-02-13 Thread Jens
You can use any package structure you want. Your server classes can be in any package but you must make sure that the GWT compiler does not see them. The GWT compiler only sees code that is included using in your *.gwt.xml file. By default GWT compiler looks in the package called "client" next