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