I am using modal window for some update purpose,
the issue i am facing is,i am not able to refresh parent after closing
modal window.
The code i used:
------------------------
For opening modal window from parent window:
Expand|Select|Wrap|Line Numbers
- showModalDialog("mypage.jsp",window,"dialogHeight:480px;dialogWidth:700px;");
Expand|Select|Wrap|Line Numbers
- window.close();
- var xWin = window.dialogArguments;
- xWin.location.reload(true);
i am also using the following code in parent page to avoid cache store
[HTML]<meta http-equiv="cache-control" content="text/html; charset=iso-8859-1, no-cache, no-store, must-revalidate" />
<meta http-equiv="expires" content="0" />
<meta http-equiv="pragma" content="no-cache" />
[/HTML]
can any one tell me how to over come this issue?
regards,
sundar