Re: Getting popup window value to parent window

2004-07-02 Thread Srinivas Rao
Hi Sasidhar, Thanks for replay to me.. I am using Struts,jsp and javascript. My problem is I got the message from popup window to parent window if it is single file.But if it is multple files i am not getting the message . Here is my code . parent window code .. f

Re: Getting popup window value to parent window

2004-07-01 Thread SASIDHAR BUDAMPATI
Hi srinivas, Here is code i think is the solution. I worked with it successfully. Try it. window.opener.document.all.state.value = eval(document.ResultsBody.stateField.value); window.opener.focus(); self.close(); I think this will do. all the best. --- Srinivas Rao <[EMAIL PROTECTED]> wrot

Re: Getting popup window value to parent window

2004-07-01 Thread SASIDHAR BUDAMPATI
Hi srinivas, Here is code i think is the solution. I worked with it successfully. Try it. if (window.opener & !window.opener.closed) { window.opener.document.all.state.value = eval(document.ResultsBody.stateField.value); window.opener.focus(); self.close(); } I think this will do. all the best.

Getting popup window value to parent window

2004-07-01 Thread Srinivas Rao
Hi guys, I am facing samll problem , it's a simple one but i don't know what is the wrong i am doing ... Please help me.. My problem is ... I have parent window and child window (ie popup window)..If i entered the value into text field to popup window then the value come to the parent window if