When I load a URL into a 'Frame' widget and from there click some web
links I can see 'GET' Method showing in Eclipse' console window. So with
this I have place GWT.log to see if I can catch it from here:
Frame myframe = new Frame("some_url_here");
myframe.addLoadHandler(new LoadHandler(){
@Override
public void onLoad(LoadEvent event) {
GWT.log("@myframe onLoad event: " + event.toString());
}});
What I was hoping is to catch the GET method / event from that 'click'
on the Frame widget?
Any ideas where to catch these events? Well, to modify it before it goes
out.
Thanks,
Xybrek
--
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 google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
No comments:
Post a Comment