Hi
I have a situation , the cookie is created when the user is login into the
application and we want to remove the cookie when the user press the logout
button or close the browser.
I register the close event like this :
Window.addCloseHandler(new CloseHandler<Window>() {
@Override
public void onClose(CloseEvent<Window> arg0) {
//clear history token before close the browser
History.newItem("");
}
});
But here , the problem is when we press the reload button or F5 , gwt enter
in the event close.
That behaviour is ok ??
--
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.