return type of modal dialog box is undefined
- by Aru
Hi,
I am using the modal dialog box to open the modal dialog.
Here is the code
var Window;
function PopDis()
{
Window=window.showModalDialog('/collector/modalBox.jsp', '', 'dialogHeight:300px; dialogWidth:500px;scroll:no; status:no; help:no; center:yes; resizable:no');
}
In another function i want to close the modal dialog.
Code is
function CloseModalDialog()
{
alert("in fun close"+Window);
Window.close();
}
But var Window is undefined
hence unable to close the window.
Please give me the solution.