Re: Research on Elemental

2015-06-19 Thread Jens
In your GWT 2.8 checkout do ant clean elemental dist-dev to build a full GWT SDK that you can simply add to Eclipse via Eclipse Settings - Google. After the build the SDK is under build/dist. No need to copy any source files into your own project. -- J. -- You received this message because

Research on Elemental

2015-06-19 Thread Lukas Glowania
Hi, i watched the GWT 2.8 and beyond video and was excited by the direction GWT is heading for. One advice for new future oriented projects was to use the Element library, so i started using it. The low level programming style feels really great, but i'm having issues so i set Elemental up as

Re: Research on Elemental

2015-06-19 Thread Thomas Broyer
See https://gwt.googlesource.com/gwt/+/master/eclipse/README.txt -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: Research on Elemental

2015-06-19 Thread Lukas Glowania
Thanks, now i can build the SDK with Elemental, but my goal is to fix some issues with Elemental. E.g. there is an annoying bug in JsElementalMixinBase.addEventListener(String type, EventListener listener). So an Eclipse-Project is helpful, right? Maybe it would make more sense to link to the

Re: How to deal with large multi-module applications on GWT

2015-06-19 Thread Victor Krausser
Hello Jens! Well, today we have more than 250K java lines of client code divided in around 50 modules compiled in 4 permutations (2 browsers and 2 languages). I would say that full clean-build, let's say for a release or in continuous integration, could actually take up to 30 min and would

Re: gwt-syncproxy module inherit

2015-06-19 Thread Jens
SyncProxy is for server side / android / JVM only and not for GWT client side code. In the browser you always want to do async requests. -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop

gwt-syncproxy module inherit

2015-06-19 Thread Robert Kimiti
Dear all, I have SyncProxy.jar but I just haven't found out how to include it in my .gwt.xml file. -- [ERROR] Line 8: The import com.gdevelop cannot be resolved [ERROR] Line 25: SyncProxy cannot be resolved -- Please

Re: GWT 2.7 performance issue

2015-06-19 Thread salk31
Any known regressions? We are seeing a small but significant performance regression of about 20%. Our standard performance monitoring is showing a clear performance regression when running Firefox (ESR)/Linux. I get the 20% figure from using chrome profiling on Win7. A complex

Re: How to deal with large multi-module applications on GWT

2015-06-19 Thread Paul Robinson
All our developers have new core i7 machines with 8gb of RAM That's not enough. We used to use 16GB RAM for developers, but it was too constraining. We now use 32GB 64 bit machines. Having fast hardware makes a significant difference too. Paul On Fri, Jun 19, 2015 at 12:02 AM, Victor Krausser

Re: How to deal with large multi-module applications on GWT

2015-06-19 Thread Nagin Kothari
I On Fri, Jun 19, 2015 at 4:32 AM, Victor Krausser victor.kraus...@gmail.com wrote: Hello Jens! Well, today we have more than 250K java lines of client code divided in around 50 modules compiled in 4 permutations (2 browsers and 2 languages). I would say that full clean-build, let's say

Re: GWT Module (+Javascript) loading order

2015-06-19 Thread Julien
For now here are the workarounds I found : - Hardcode script tags in the desired order in the HTML of module 2 - Inject scripts in cascade in the desired order in the onModuleLoad of module 2 with the help of callbacks I chose the second workaround but both have the same disadvantage which I

gwt test folder structure

2015-06-19 Thread naveen gayar
Hi All, We are new to gwt. wish to develop some junit test cases for the same especially for gradle environment. Please let us know your inputs on the same. Thanks Naveen -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe

GWT Module (+Javascript) loading order

2015-06-19 Thread Julien
Hi there, I just noticed that I might have no control on the loading order of my GWT modules... Can you enlighten me on this subject ? I have one first GWT module (which is compiled to jar) which contains javascript code that is being injected with ScriptInjector during its onModuleLoad(). I

Re: gwt-syncproxy module inherit

2015-06-19 Thread Robert Kimiti
Jens, Thanks for the info. The documentation is a bit scanty, and I might not be able to call/use it. I thought it would help me sort out a need of synchronous call to the server. I appreciate. Robert. On Friday, 19 June 2015 16:30:28 UTC+3, Jens wrote: SyncProxy is for server side /

Re: gwt-syncproxy module inherit

2015-06-19 Thread Jens
I thought it would help me sort out a need of synchronous call to the server. Usually the approach of your solution is bad if it needs synchronous calls to the server. -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To