Ajax request handler

2009-05-12 Thread Célio
Does GWT have a mechanism to intercept/handle all ajax requests? I'm looking for something like prototypejs ajax responders , but could not find anything in gwt's javadocs. In our case, we want to show a 'loading' message when doing ajax requests. --~--~-~--~~~---~--~

Re: Ajax request handler

2009-05-12 Thread Salvador Diaz
The relevant parts of the documentation are here: http://code.google.com/webtoolkit/doc/1.6/DevGuideServerCommunication.html http://code.google.com/webtoolkit/tutorials/1.6/RPC.html Hope that helps, Salvador On May 12, 3:56 pm, Célio wrote: > Does GWT have a mechanism to intercept/handle all a

Re: Ajax request handler

2009-05-14 Thread Célio
I've already read those docs before. As far as I can see, gwt doesn't provide such mechanism. Célio On May 12, 5:14 pm, Salvador Diaz wrote: > The relevant parts of the documentation are > here:http://code.google.com/webtoolkit/doc/1.6/DevGuideServerCommunication...http://code.google.com/webt

Re: Ajax request handler

2009-05-14 Thread Salvador Diaz
Well, you can achieve the same kind of functionality by extending AsyncCallback and having a global asyncCallback and RPC registry. But you're right, there's nothing like that out of the box. If you really really can't live without, you can search for a gwt wrapper for prototype, I'm sure somethi