Hi All,

I am facing problem on Close listener in GWT-Ext Window .
com.gwtext.client.widgets.event.WindowListener, it is having all
override methods for Window. When onclose of Window it is calling
onClose () method and
onbeforeClose() methods.
the problem is i am not able to close that window, but it is calling
those two methods,
the code I am using is:
window.addListener(new WindowListener() {
@Override
public boolean doBeforeClose(Panel panel) {
        // TODO Auto-generated method stub
        jsTerminateVideoWindow(fVideoId);
        panel.clear();
        return true;
}

@Override
public void onClose(Panel panel) {
        // TODO Auto-generated method stub
        window.hide();
        window.clear();
        panel.destroy();
        jsTerminateVideoWindow(fVideoId);
        panel.clear();
}

-----
----more methods we have to override
----

Any body knows this issue please provide me a solution.

Thanks in advance,

Raj.

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