I'm sorry for the double post but I am very tired and I have seen in
the old post, I have forgotten a note and I have totally mistaken the
title:


Hi,
 I'm in need of managing the windows close or to catch a load action
of the user or acted by the page itself.(My application is integrated
into previously deployed page).
The snipped of my code (initialization part) is something like:

        Window.addCloseHandler(new CloseHandler<Window>() {
            @Override
            public void onClose(CloseEvent<Window> event) {
                endManager();
            }
        });

        Window.addWindowClosingHandler(new ClosingHandler() {
            @Override
            public void onWindowClosing(ClosingEvent event) {
                  endManager();
            }

        });

This code works right on IE/FF/Chrome but fails on Opera.
 Simply Opera ignores the windows.close* handlers... they are not
"triggered".
I have already found out this:
http://code.google.com/p/google-web-toolkit/issues/detail?id=611&q=on...

Have you already solved the issue in an elegant (or less elegant
way?)?: Can you please share with me a workaround?
Thanks in Advance
Regards

P.s: I hope this inconsistency 'll be fixed in GWT...

-- 
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.

Reply via email to