Re: Integrating RequestFactory into an eclipse project

2011-08-20 Thread Spundun
Thanks all for the help, I ended up doing a tedious comparison of my project with DynaTableRf sample and copied the hibernate validator and gwt-servlet.jar from there. After a very frustrating 5 days, I have a working RequestFactory setup, now I can focus on actually implementing the server end.

Re: Editor returns null values for empty strings after flush?

2011-08-20 Thread P.G.Taboada
That was the missing piece for me: the editor framework uses getvalueorthrow! The issue is here: http://code.google.com/p/google-web-toolkit/issues/detail?id=6713 On Aug 19, 11:02 pm, Jens jens.nehlme...@gmail.com wrote: Ok after digging around in GWT's source code: TextBox uses the

Re: Editor returns null values for empty strings after flush?

2011-08-20 Thread P.G.Taboada
It looks like that it is enough to comment out the if statement in the ValueboxBase it solved the issue for me. But I am not sure what collateral damages that imposes to the request factory way of things. The patch did not break any test (?!?), and the fact that the TextBoxBase does undo this

Aw: Re: Editor returns null values for empty strings after flush?

2011-08-20 Thread Jens
You should patch TextBoxBase and not ValueBoxBase. Or create your own MyTextBox extends TextBox and overwrite the method. ValueBoxBase itself is fine.. but TextBoxBase is not. -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: Editor returns null values for empty strings after flush?

2011-08-20 Thread Papick G. Taboada
I'll do that as soon as I have notice that is a feature and not bug. For now patching is easy and I must not change all my UIs. :-) Am 20.08.2011 um 12:51 schrieb Jens: You should patch TextBoxBase and not ValueBoxBase. Or create your own MyTextBox extends TextBox and overwrite the method.

Re: In order to produce smaller client-side code, 'Object' is not allowed; consider using a more specific type

2011-08-20 Thread ankit
hi everone..may be u forget to make any variable or class as generic..i solved my problem by doing this. On Aug 19, 8:39 pm, David lujup...@gmail.com wrote: ok, let me get ride of the warning firstly. but I worried this is warn message not errro, that couldn't stop hosted mode from working

My GWT-App does not work in Android

2011-08-20 Thread Magnus
Hi, my application does not work in Android: http://www.bavaria64.de/bcs Users report that they cannot access the app with Android. I cannot test it myself, but I would guess that Android, which comes from Google, would be supported by GWT, too? What can I do? Thanks Magnus -- You received

Re: Integrating RequestFactory into an eclipse project

2011-08-20 Thread Jeff Larsen
If you pulled down trunk, you could use the client side requestfactory-apt.jar. That does compile time validation on your objects, so you'd probably be able to get the red squiggilies to tell when you're doing something wrong. -- You received this message because you are subscribed to the

Re: Integrating RequestFactory into an eclipse project

2011-08-20 Thread Thomas Broyer
You can also download the JAR from SVN, and you can also run ValidationTool to post-process your classes. See http://code.google.com/p/google-web-toolkit/wiki/RequestFactoryInterfaceValidation -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: My GWT-App does not work in Android

2011-08-20 Thread Michael Vogt
Hello Magnus. Users report that they cannot access the app with Android. I cannot test it myself, but I would guess that Android, which comes from Google, would be supported by GWT, too? What can I do? I just loaded the page with my Nexus One and Galaxy Tab without problems (as far as I can

Re: Generating XML

2011-08-20 Thread karim duran
Hi Gary, I understand that you want to do. From a java object, you want to produce XML representation. Ok, you have many framewoks that do this for you. The 2 solutions i propose to you : 1) Use a standard way ( good practice and a framework support ) Let see JAXB API on Oracle web site because

Image onLoad doesn't fire in production

2011-08-20 Thread Rohan Chandiramani
Greetings gentlemen, So my app is working perfectly on development but not on production and i can't figure out why. Here's a view class and it's supposed to load an image and then with that data draw it on a canvas, problem is on production my onLoad event isn't firing. Here's the

stuck at v1.5.3 of the SDK in eclipse

2011-08-20 Thread alexl
hi, is there a way to upgrade to 1.5.3 within eclipse? I tried check for updates but it only finds up to 1.5.2, thx Initializing AppEngine server [WARN] There is a new version of the SDK available. --- Latest SDK: Release: 1.5.3

Re: stuck at v1.5.3 of the SDK in eclipse

2011-08-20 Thread Russ
Download the App Engine SDK - Unzip it somewhere - Make a new project in eclipse - Select Configure SDK's - click Add and browse to the app engine directory you extracted and you're done. On Sat, Aug 20, 2011 at 6:28 PM, alexl alexthebl...@gmail.com wrote: hi, is there a way to upgrade to 1.5.3

Re: stuck at v1.5.3 of the SDK in eclipse

2011-08-20 Thread alexl
thanks it worked! say would you know how to disable stats (whatever that is) I keep getting this error $stats is not defined thx -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Doubt about MVP multiple areas.

2011-08-20 Thread vehdra music
I need to have a layout like this. +--+ || +--+ | Users | Name[] | | Pages|Lastname [] | |

Re: stuck at v1.5.3 of the SDK in eclipse

2011-08-20 Thread alexl
oops never mind, there as a syntax error I introduced in my hosted.html -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send email to

Re: Doubt about MVP multiple areas.

2011-08-20 Thread Ashwin Desikan
With regards to enabling your add button, throw a custom event on the click of cancel, listen for this event in the activity which manages the view containing the add button. ~Ashwin Sent from my iPhone On Aug 21, 2011, at 8:06 AM, vehdra music veh...@gmail.com wrote: I need to have a