Compile warning although custom serialization implemented

2017-02-08 Thread P.G.Taboada
Hi, I have a custom serializer for a class, but I still get a warning that I have final fields. It is working, I just would like to get rid of the warning. What can I do? brgds, Papick -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To uns

want a tutorial for UI in GWT

2017-02-08 Thread Aymen kachaii
hello evryone im a graphic and web designer and i want a tutorial in GWT interface please who's can send me some documentation or video thanks a lot -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receivin

Porting Sass/Less to GssResource

2017-02-08 Thread DavidN
It is nice that GWT supports GssResources, but I am a bit underwhelmed by the functionality that it provides compared to sass and less. But maybe it is because the documentation is very limited. I'm trying to port a mixin like this clearfix mixin: .clearfix() { *zoom: 1; &:before, &:after

Re: Porting Sass/Less to GssResource

2017-02-08 Thread Jens
I usually just use: .clear:after { content:''; height:0; display:block; visibility: hidden; clear:both; } and apply it on the element whose children have float. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from th

List of native JsType

2017-02-08 Thread Kenny
Hi I am trying to wrap a javascript library using JsInterop. I do have a problem when using lists of native JsTypes. I have a very simple js file: function createMyObject() { return {value:10}; } And a JsType: @JsType(isNative = true) public class InteropTest { public int value; @JsMethod(name

Re: List of native JsType

2017-02-08 Thread Kirill Prazdnikov
Hi, You can use @JsProperty instead of "int value;": @JsProperty public abstract int getValue(); -- 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-

Re: List of native JsType

2017-02-08 Thread Vassilis Virvilis
Wild guess mode: ints are weird in jsinterop. Basically js does not have ints. I would suggest first try with String not int and if that work with Double. If this is not the problem: - Compile with preety flags so you understand what's going on - Start a debugging session with chrome. Othe