Re: Third Party Library for GWT validation

2015-05-20 Thread Freddy Boucher
The way you request your server *doesn't matter*... The *GWT Validation Framework* allows you to test your fields in both *front-end* and *back-end*. As soon as you test your fields, you will get an *error list.* On Tuesday, May 19, 2015 at 4:07:15 PM UTC+10, Mohammed Sameen wrote: Yes

Re: I need help with this 503 error

2015-05-20 Thread Nana Kwame Amagyei
Thanks much Thomas. Problem is, I have GWT 3.8.0 plugin installed in Eclipse Luna. Do you suggest I downgrade to 2.6.1? On Tuesday, May 19, 2015 at 9:13:24 PM UTC, Thomas Broyer wrote: First thing is to try with GWT 2.6.1 (or better, 2.7) as 2.6.0 is known to have classloader issues in

Select or browse for multiple folders in gwt

2015-05-20 Thread Ujjwal Ghosh
I have a requirement where I need to select multiple files or folders using the Browse button in GWT. This is the code snippet that I am trying. I can do a multiple file selection but it doesn't work for a single folder selection. public MultiFileSelection( Element element ) { super(

GWT Compiler Task

2015-05-20 Thread naveen gayar
Hi I see that gwt provides support for ant. I wish to have the task which compiles the java code and generate javascript folder. Can anybody provide me hint on the same. Thanks navindian -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group.

Re: Debugging in Super Dev Mode is a pain.. :-(

2015-05-20 Thread Shahram Zadeh
Jens, Thanks for quick and informative response. I will definitely try these options. because my project is too huge to quit. will let you know, thanks On Tuesday, May 19, 2015 at 12:18:28 PM UTC-7, Jens wrote: IntelliJ 13+ can do this out of the box and for Eclipse there is a plugin

Re: GWT Compiler Task

2015-05-20 Thread Mohammed Sameen
Use Jenkins http://jenkins-ci.org/ http://jenkins-ci.org/ On Wednesday, May 20, 2015 at 11:53:58 AM UTC+5:30, naveen gayar wrote: Hi I see that gwt provides support for ant. I wish to have the task which compiles the java code and generate javascript folder. Can anybody provide me hint

Re: GWT Compiler Task

2015-05-20 Thread Mohammed Sameen
Use Jenkins http://jenkins-ci.org/ http://jenkins-ci.org/ On Wednesday, May 20, 2015 at 11:53:58 AM UTC+5:30, naveen gayar wrote: Hi I see that gwt provides support for ant. I wish to have the task which compiles the java code and generate javascript folder. Can anybody provide me hint

GWT Compiler Task

2015-05-20 Thread Thomas Broyer
Have a look at the samples (either download the GWT SDK as a zip file, or browse the source online), some if them use Ant. You can also use the WebAppCreator (or Eclipse new project wizard) to generate a skeleton project with an optional Ant script (have a look at the getting-started docs

Re: I need help with this 503 error

2015-05-20 Thread Thomas Broyer
I suggest you upgrade GWT from 2.6.0 (look at your stacktrace) to 2.6.1 or 2.7.0 (and yes, that means downloading then manually as there's no Eclipse Plugin for those versions). The version of the Google Plugin for Eclipse doesn't really matter here. -- You received this message because you

Select or browse for multiple folders in gwt

2015-05-20 Thread Ujjwal Ghosh
I have a requirement where I need to select multiple files or folders using the Browse button in GWT. This is the code snippet that I am trying. I can do a multiple file selection but it doesn't work for a single folder selection. public MultiFileSelection( Element element ) {

Re: [gwt-contrib] Re: Upcoming overhaul to JsInterop annotations in preparation towards v1.0 release

2015-05-20 Thread Juan Pablo Gardella
Why export is defaulted to false? On 19 May 2015 at 19:21, 'Goktug Gokdogan' via GWT Contributors google-web-toolkit-contributors@googlegroups.com wrote: Here is the comparison chart: @JsExport @JsType class MyClass {} @JsType(exports=ALL) class MyClass {} @JsExport class MyClass

Re: [gwt-contrib] Re: Upcoming overhaul to JsInterop annotations in preparation towards v1.0 release

2015-05-20 Thread 'Goktug Gokdogan' via GWT Contributors
+1 to what Colin said. To add to that, 'export' is for exposing something to the outside of the binary, in time with tighter closure integration even less things will fall outside of the binary. On Wed, May 20, 2015 at 6:48 AM, Colin Alworth niloc...@gmail.com wrote: At least in my cases, I'm

Re: A new way to handle page navigation in GWT

2015-05-20 Thread Gilberto
Glad you liked it =) I just posted the v.1.1.0 with better support for dependency injection and some more improvements. Feedback is always welcome ;-) -- Gilberto -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this

Re: GWT RPC : remote call

2015-05-20 Thread David
that is because d_entity[0] contains null. You only allocated the array but not the Data_entity objects. On Wed, May 20, 2015 at 4:51 PM, melj...@spraytalent.com wrote: *Hi all, * *I got an error in my GWT application, when i call a server side methode to get Data in order to display them in

Re: GWT Compiler Task

2015-05-20 Thread natan aguiar
target name=CompilarGerarGWT depends=CopiarImagensRelatorio description=Compila para JavaScript unless=PF java failonerror=true fork=true classname=com.google.gwt.dev.Compiler maxmemory=1024M classpath pathelement location=${srcProjeto} / path refid=project.class.path / pathelement

GWT super dev mode unable to step the code in the method of inner class

2015-05-20 Thread Daniel Chan
Dear all, I am tried to step in the method of inner class. I have break in the method. However, no break in the step. Please kindly help Regards Daniel -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and

Re: Third Party Library for GWT validation

2015-05-20 Thread Thomas Broyer
On Wednesday, May 20, 2015 at 4:40:17 PM UTC+2, Chad Vincent wrote: (GWT responses use GSON, a Google-modified JSON, and are converted to POJO post-receive.) Huh!?!?!?! GWT-RPC uses its own serialization formats (plural: server-to-client is based on JS object literals –there's a patch to

GWT RPC : remote call

2015-05-20 Thread meljair
*Hi all, * *I got an error in my GWT application, when i call a server side methode to get Data in order to display them in a pieChart (GWT visualization), here is the code : * *Server Side : * public class SpdhServiceImpl extends RemoteServiceServlet implements SpdhService { /** * */

Re: Third Party Library for GWT validation

2015-05-20 Thread Chad Vincent
Huh. It's been a few years since I was in the raw serialization bits. I must've got things confused. Actually, that serialization format looks like what I remember seeing of HL7. On Wed, May 20, 2015 at 10:05 AM Thomas Broyer t.bro...@gmail.com wrote: On Wednesday, May 20, 2015 at 4:40:17

Re: Third Party Library for GWT validation

2015-05-20 Thread Chad Vincent
So you never convert the JSON to a POJO client side? (GWT responses use GSON, a Google-modified JSON, and are converted to POJO post-receive.) My best suggestion then is to just walk the JSON as a Map and use a custom validator interface... On Tuesday, May 19, 2015 at 1:07:15 AM UTC-5,