mahi
unread,Sep 25, 2008, 2:31:04 AM9/25/08Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Gwt Window Manager
Hi Luciano,
Thanks for your quick reply... actually i want to give id to the
iframe... dynamically if i click one button in jsp page, i need to
display some content in gwm window.
So after opening the window, gwm is allowing user to close it also. So
just trying to reopen the window if that object is null.
Also I am calling this code onClose event....
newWin = new DefaultGFrame("");
newWin.addFrameListener(new GFrameAdapter(){public void
frameClosed(GFrameEvent evt) {
// TODO Auto-generated method stub
//doing something when the
try{
newWin.close();
newWin = null;
}
catch (Exception e)
{
e.printStackTrace();
}
}});
please have a look at this and tell me how could I get the things to
be done,....
- Mahi