Re: GWT 2.7.0 is here

2015-02-20 Thread showlong
I did a test to manually rename the module.nocache.js to module-nocache.js file and upate module.htmi to load client/module-nocache.js file, it works. How come? No idea. Most likely there is something strange with your setup. -- J. I found the issue is our Tomcat server is looking

No Eclipse new web application project button on Mac

2015-02-20 Thread 'Arthur Street' via Google Web Toolkit
I followed these instructions https://developers.google.com/eclipse/docs/install-eclipse-4.4 to install Google Web Toolkit in a freshly installed Eclipse (Luna). I have Java version 8 on Mac OS 10.7.5. I restarted Eclipse twice for good measure. I can see the following installed software:

Is there a way to load GWT code synchronously ???

2015-02-20 Thread Kisalaya Prasad
My use case is simple : Assuming I'm only using GWT as a java-to-javascript compiler, and use it primarily as an exporter (compile java objects to js objects and make them available to be used in other JS apps). The asynchronous nature in which the appropriate permutations are loaded means

GWT Chrome Plugin is not recognized

2015-02-20 Thread Martin Dähn
Hi Group, I am using the GWT Chrome Plugin Version: 1.0.11357 with Chrome Version 40.0.2214.115 (64-bit) on MAC-OSX 10.10.2. Since last update the GWT Plugin is not recognized any more, but i can not install a newer Version. Is there any workaround for this problem? Thanks in advance. Regards

GWT Slider Bar

2015-02-20 Thread Charlie Harris
Hi Is this: https://code.google.com/p/gwt-slider-bar/ble to work with MS Excel ? available to work with MS Excel 2000 ? Thankyou Charles Harris -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and

Re: GWT Chrome Plugin is not recognized

2015-02-20 Thread Juan Pablo Gardella
Use Firefox v24. On 20 February 2015 at 09:38, Martin Dähn web...@42com.com wrote: Hi Group, I am using the GWT Chrome Plugin Version: 1.0.11357 with Chrome Version 40.0.2214.115 (64-bit) on MAC-OSX 10.10.2. Since last update the GWT Plugin is not recognized any more, but i can not install

Re: Is there a way to load GWT code synchronously ???

2015-02-20 Thread Thomas Broyer
On Friday, February 20, 2015 at 7:45:12 AM UTC+1, Kisalaya Prasad wrote: My use case is simple : Assuming I'm only using GWT as a java-to-javascript compiler, and use it primarily as an exporter (compile java objects to js objects and make them available to be used in other JS apps).

Re: Could someone plubish a video showing how to debug GWT using SuperDevMode in NetBeans?

2015-02-20 Thread Thomas Broyer
On Friday, February 20, 2015 at 12:17:23 AM UTC+1, Manuel Carrasco wrote: does 'temporarily' mean that eventually you will replace the old one with the new one? or simply we should switch to the new one because the other would become unmaintained? I don't enjoy maintaining the CodeHaus

Re: GWT Chrome Plugin is not recognized

2015-02-20 Thread Jens
You should use SuperDevMode. Development of classic DevMode has stopped because browsers have started to remove required plugin APIs. -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop

Re: Hibernate Validator Issue

2015-02-20 Thread Danilo Reinert
Try the following: !-- Hibernate bean validation binary for the server -- dependency groupIdorg.hibernate/groupId artifactIdhibernate-validator/artifactId version4.1.0.Final/version exclusions exclusion groupIdjavax.xml.bind/groupId

SDM not workin correct...

2015-02-20 Thread Blaze
Hi, I use Super dev mode for about 2-3m now, and all worked ok. Now suddenly it stopped making recompile when there are code changes. Its used from Eclipse with -noserver. If I start and stop the codeserver from eclipse or call dev off and then back on in the browser it dose recompile, but

Re: SDM not workin correct...

2015-02-20 Thread Jens
Try adding -Dgwt.watchFileChanges=false to your JVM parameters. This will disable file watching which sometimes does not work correctly. I had to do that for Mac OS as SDM sometimes thought that no files had changed. -- J. -- You received this message because you are subscribed to the

Re: Avoid generating Extra Attribute or Inline Styling from GWT CellTable?

2015-02-20 Thread Mohammed Sameen
Any other suggestion on this? On Friday, February 20, 2015 at 1:07:21 PM UTC+5:30, Mohammed Sameen wrote: Hi, https://lh6.googleusercontent.com/-ASUZikDz1b4/VObjuDlb69I/AHI/1BrlB7iPQq0/s1600/gwtcellTable.png In my application I am using GWT Celltable for loading huge data in

Re: SDM not workin correct...

2015-02-20 Thread Blaze
Hi Jens, thx for the replay. I add this to the vm arguments in run configuration from eclipse, but no changes. Just the very first load after the code server is started compile is done after that the same is used... setting -Dgwt.watchFileChanges=false, should force compile every time a

Re: SDM not workin correct...

2015-02-20 Thread Jens
Are you sure you deploy the app.nocache.js file generated by SDM? If you have done a production compile in the mean time then you might have deployed a wrong one. Try to delete any existing ./war/module name folder and restart SDM to give it a clean start. Once it is started you can deploy.

Re: Could someone plubish a video showing how to debug GWT using SuperDevMode in NetBeans?

2015-02-20 Thread Juan Calderón
Well, thanks for your answers. Finally, I have achieved to do a small hello example using NetBeans + Maven + Gwt 2.7. But as Edson said, I don't if it is enough for big and multi-module projects. My interest is to move my projects from Gwt 2.6 with Gwt4Nb to Gwt 2.7 with Maven and to keep

Re: SDM not workin correct...

2015-02-20 Thread Blaze
Hi Jens, you wore right, this was the actual problem. I run a Tomcat server inside Eclipse and dose the redeploy by autoscans, and i guess it also autoredeploy some of the real compiles cosing the problem. What i have found a bit not logical. If the SDM is started on a clean app for a very

Re: Avoid generating Extra Attribute or Inline Styling from GWT CellTable?

2015-02-20 Thread iza
You would need to implement a custom CellTableBuilder http://www.gwtproject.org/javadoc/latest/com/google/gwt/user/cellview/client/CellTableBuilder.html . -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and

Re: NetBeans Gwt 2.7 SDM

2015-02-20 Thread Juan Calderón
Well, my own example. https://github.com/cimav-pruebas/NetBeansMvnGwt2.7SDM -- 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: Avoid generating Extra Attribute or Inline Styling from GWT CellTable?

2015-02-20 Thread iza
You would need to implement a custom CellTableProvider http://www.gwtproject.org/javadoc/latest/com/google/gwt/user/cellview/client/CellTableBuilder.html . -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and

Re: Could someone plubish a video showing how to debug GWT using SuperDevMode in NetBeans?

2015-02-20 Thread Edson Richter
Problem is that in SuperDevMode, debugging in chrome shows incorrect sources and breakpoints ; Firefox is even worse. Em 20/02/2015 16:51, Juan Calderón juan.calde...@gmail.com escreveu: Well, thanks for your answers. Finally, I have achieved to do a small hello example using NetBeans + Maven