btw: here a sample

        XMLHttpRequest r = XMLHttpRequest.create();
        r.setOnReadyStateChange(new ReadyStateChangeHandler() {
                        @Override
                        public void onReadyStateChange(XMLHttpRequest xhr) {
                                Window.alert("GET got done");
                        }
                });
        r.open("GET", "http://www.google.com";);
        r.send();

On 20 Jul., 18:51, mk <munna.kaka.ch...@gmail.com> wrote:
> Is there a way to make AJAX async call of type GET ( instead of POST).
>
> (RequestBuilder is ok but still is there a easier way)

-- 
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-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to