Hi Ajay,
Thanks replay to me and  is it possible to get the popup window value to parent 
window? 
 
This is the information ur asking ...
1.) popup window come up properly and i am not getting any error.
2.) I have wrote the append() funtion in child window but i am not getting the initial 
value from the parent window .
3.) I am not getting any error from parent window or child window.
 
 
Actualy my problem is, i am getting the list of files and i display the files one by 
one,and I enter the relavent comment to the each files. This is the problem.I traid 
but i am not getting the values from popup window.
 
Is it possible enter comment to each files,what is the way to solve this problem.
 
Here is the code >>>>>
 
Parent window ....
 
<nested:text property="stockBox" styleId="stockBox" value=""/>
  <html:button property="list" value="list" onclick="showList()"/>
 
Child Window...
 
function append()
{
alert(window.opener.document.forms["supervisorDeskActionForm"].getElementById("stockBox").value);
document.getElementById("comment").value=window.opener.document.forms["supervisorDeskActionForm"].getElementById("stockBox").value;
}
function pickinf() {
  if (window.opener && !window.opener.closed)
 {
    window.opener.document.forms["supervisorDeskActionForm"].stockBox.value = 
document.getElementById("comment").value;
 }
  window.close();
}
</script>
</head>
<body onload="append()">
<html:form action="/supervisorInfo.do" >
<center>
<nested:textarea property="comment" styleId="comment" value=""/>
<html:button property="Done" value="Done" onclick="pickinf()"/>
</center>
</html:form>

Plz tell me the way to solve this problem...
 
Thanks
Srinivas
Ajay Patil <[EMAIL PROTECTED]> wrote:
Dear Srinivas, 

You have mentioned that you are facing a small problem, but you
havent given any information on where the problem is coming.

1. Does the child window (popup) come up properly ?

2. Does it contain the initial value correctly ?
i.e does you append function in child window work correctly ?

3. Do you get any error message in browser ?
If yes, what is it ?

4. Does the browser crash ? If yes, did you try to debug ?

If you can give above information, maybe I can try to help you.

Anyways, looking at your code,
TRY CHANGING THE FOLLOWING IN ALL JAVASCRIPT FUNCTION

ORIGINAL -->
window.opener.document.supervisorDeskActionForm.getElementById
("stockBox").value

MODIFIED -->
window.opener.document.forms["supervisorDeskActionForm"].stockBox.value

Let me know if this is helping you,
Ajay







Date: Sun, 27 Jun 2004 21:25:31 -0700 (PDT)
From: Srinivas Rao 
Subject: problem Please Help me.....
To: [EMAIL PROTECTED]

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 i close the child window. the code is here .....

This is Parent window code.........

 
function showList() {
 alert("Call Show List");
  sList = window.open("/MTProd/ps/Supervisorcomment.jsp", "list", 
"width=750,height=510");
}

 




property="audioList">
styleId="stockBox" value=""/>
onclick="showList()"/>


Chile window Code......


function append()
{
alert(window.opener.document.supervisorDeskActionForm.getElementById("stockBox").value);
document.getElementById("comment").value=window.opener.document.supervisorDeskActionForm.getElementById("stockBox").value;
}
function pickinf() {
  if (window.opener & !window.opener.closed)
 {
    window.opener.document.supervisorDeskActionForm.stockBox.value = 
document.getElementById("comment").value;
 }
  window.close();
}











This is the code ....

Please tell me what is the wrong i am doing now...

Thanks to replay to me.....

Thanks 
Srinivas.



---------------------------------


                
---------------------------------
Do you Yahoo!?
New and Improved Yahoo! Mail - Send 10MB messages!

Reply via email to