Re: DevMode not working in Chrome after update

2012-09-27 Thread POODevelopper
Ahh I'm frustrated, Why they broke this. I just can't live on an older version of Chrome. Even the Canary version have the same issue. On Thursday, September 27, 2012 1:25:50 AM UTC+1, Brandon Donnelson wrote: Workaround works for me, by downloading an older version, Chrome 21 on my mac...

Synchronous RequestFactory Call GWT

2011-11-15 Thread POODevelopper
Hello, I build an authentication page using Spring MVC and Spring security once the user is authenticated he is forwarded to the GWT application which will make an asynchronous request to server to retrieve the credentials of the currently authenticated user. The problem is that I must wait

How to use Editors With a Service Oriented BackEnd

2011-10-02 Thread POODevelopper
Hello, I'm working on a GWT application that uses Spring on the backend (service oriented approach not ActiveRecord) and I want to use Editor to push and get data from the UI. To communicate with the backend I use ValueProxy because it's service oriented. I want to know what kind of editors I

Re: GWT CellTable Add Widgets on The Footer

2011-09-19 Thread POODevelopper
How can use editors with this solution ?? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/NyHX7LQ9PAQJ. To post to this group, send email to

Re: Event to Know when a User is Leaving GWT Application

2011-09-18 Thread POODevelopper
Is it a good idea to put there the code that back up data to the LocalStorage ? On Sep 17, 9:21 pm, Thomas Broyer t.bro...@gmail.com wrote: Window.ClosingEvent? As a reminder, note that all your activities' mayStop will be called at that time, and the returned message will be used as the

GWT CellTable Add Widgets on The Footer

2011-09-18 Thread POODevelopper
Hello I'm using GWT 2.4 and I want to Add Some Widgets on the footer on a CellTable, Is It possible. Below A Mockup if What I want to accomplish : https://lh5.googleusercontent.com/-9QTjFJdhCvE/TnZVRqYMfaI/AHs/WQLAmuvw6c4/FooterCellTable.png It Is Possible out the box ?? -- You

Event to Know when a User is Leaving GWT Application

2011-09-17 Thread POODevelopper
Hello, I'm using GWT 2.4 and want to know, if there is any kind of event that is triggered when the user leave a GWT Application. I want to know is there is a 'stop' Method for the whole application not just for a given Activity. -- You received this message because you are subscribed to the

GWT 2.4 RequestFactory Exception when receiving data from BackEnd

2011-09-15 Thread POODevelopper
Finally RequestFactory work with Spring back end, but I have another issue : Is that i receive an exception on client when he process the data, the server service is call but I get this exception on client. Everything is set up correctly the Proxy Value Object, the Request Object and the

Re: GWT 2.4 RequestFactory Exception when receiving data from BackEnd

2011-09-15 Thread POODevelopper
PM, POODevelopper imra...@gmail.com wrote: Finally RequestFactory work with Spring back end, but I have another issue : Is that i receive an exception on client when he process the data, the server service is call but I get this exception on client. Everything is set up correctly

Re: GWT 2.4 RequestFactory Exception when receiving data from BackEnd

2011-09-15 Thread POODevelopper
Thank you guys for the hint, I used this article to set up a proper Exception handling : http://cleancodematters.wordpress.com/2011/05/29/improved-exceptionhandling-with-gwts-requestfactory/ I have found that the Property destTransactionId was Null. GWT need to handle Exceptions well Out of the

GWT 2.4 Spring Integration Using RequestFactory

2011-09-14 Thread POODevelopper
I'm currently Working on a GWT 2.4 / Spring 3 application and want to use the RequestFactory API to communicate with Spring services. I searched and find that to integrate GWT integrate with Spring beginning from 2.4 you just need to create a custom ServiceLocator that expose your Spring beans.

Re: GWT 2.4 Spring Integration Using RequestFactory

2011-09-14 Thread POODevelopper
= service.resolveRequestContextMethod(operation); On Sep 14, 2:50 am, POODevelopper imra...@gmail.com wrote: I'm currently Working on a GWT 2.4 / Spring 3 application and want to use the RequestFactory API to communicate with Spring services. I searched and find that to integrate GWT

Re: GWT 2.4 Spring Integration Using RequestFactory

2011-09-14 Thread POODevelopper
contextMethod = service.resolveRequestContextMethod(operation); On Sep 14, 2:50 am, POODevelopper imra...@gmail.com wrote: I'm currently Working on a GWT 2.4 / Spring 3 application and want to use the RequestFactory API to communicate with Spring services. I searched and find