I am opening a modal popup window. Then i access parent window textbox and other attributes using window.opener. It is working fine in firefox but not in IE8. It gives error 'window.opener is null'. How can i access parent window attributes in child window which works in both browsers.
feedback
|
|
You can pass arguments to showModalDialog function. Simply pass window object as an argument.
Yo can access the arguments from the modal window using dialogArguments. See: http://msdn.microsoft.com/en-us/library/ms533723%28VS.85%29.aspx
| ||||
feedback
|
|
There are two ways to solve the problem: Note: "window.opener" is not supported by IE if "showModalDialog" is been used. 1) Instead of "window.showModalDialog" use "window.open" 2) If you want to use "window.showModalDialog" then do the following:
--Cheers Krishn Y | ||||
|
feedback
|
|
The approach I would take is 1. Use a existing javascript UI library becuase you are not first person to ever want to do this, failing that 2. Create a function called OpenWindow, that browser sniffs for the window.opener method i.e. if(window.opener == undefined){ //probably not firefox... } and if it finds it then uses it, else it tests for the IE variant and uses it...and then checks safari's version etc.... | |||
|
feedback
|