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
"GWT-Ext Developer Forum" 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/gwt-ext?hl=en.