DaniWeb IT Discussion Community

DaniWeb IT Discussion Community (http://www.daniweb.com/forums/index.php)
-   JSP (http://www.daniweb.com/forums/forum24.html)
-   -   Having problem in retrieveing values from pop-up window to main window (http://www.daniweb.com/forums/thread88378.html)

aruna_k_2006 Sep 3rd, 2007 5:56 am
Having problem in retrieveing values from pop-up window to main window
 
This is my main window

<html>
<head>
<SPAN style="COLOR: green"><script language=javascript>
function PopWindow(URL,height,width)
{
// alert("in popwindow");
window.open(URL,height+width,"width="+width+",height="+height+",resize=no,resizable=no,scrollbars=yes,menubar=no,status=no");
window.focus();
}

</script>
</head>
<body>

<%

String StudentID=request.getParameter("id2");

System.out.println(StudentID);


%>

<form method="Post" name="f1" action="">
<table border=0 align=left>
<tr>
<td align=left><b><font color="maroon" size=3>&nbsp;|&nbsp;</font></b>Student ID</td><td><input type="text" name="StudentID" value="<%StudentID%>" size="20">&nbsp;&nbsp;&nbsp;&nbsp;<A HREF=Javascript:PopWindow("><imgsrc="images/search.gif" border=0></a></td>
</tr>
</table>
<!-- end of table -->
</form>







this is my pop up window code

<
c:forEach var="i" items="${bean.studentid}">
<tr><td>
<a href=http://127.0.0.1:8081/I_Campus/MainWindow.jsp?>&id2=<c:outvalue='${i.key}'/>onclick=window_close() ><c:out value="${i.key}"/></a></td>
<td><c:out value="${i.value}"/>
</td>
</tr>
</c:forEach>


but when the window is closed the value is not retrieved in main window ..can any one help me up
i am getting value in system.out.println();
but not in text box(input box)

hidash_in Oct 9th, 2007 6:56 am
Re: Having problem in retrieveing values from pop-up window to main window
 
<HTML>
<HEAD>
<SCRIPT LANGUAGE="JAVASCRIPT">
function doZoomback(sourceobj, destinationObj)
{
destinationObj.value=sourceobj.value;
window.close();
}function doZoom(obj)
{
window.open("Zoomin.jsp?txttest=" + obj.value)
}
</SCRIPT>
</HEAD><BODY>
<TEXTAREA name="txtTest"><%=request.getParameter("txttest")%>
</TEXTAREA>
<input type="submit" name="cmdOK" value="OK" onclick="parent.doZoomback(txtTest,opener.document.all.txttest)">
</BODY></HTML>
The above program is similar to ur program so i think it will solve ur problem..
leave ur comment to my id

peter_budo Oct 9th, 2007 8:04 am
Re: Having problem in retrieveing values from pop-up window to main window
 
Mixing Java and JavaScript what a bad idea...


All times are GMT -4. The time now is 4:54 pm.

Forum system based on vBulletin Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
©2003 - 2009 DaniWeb® LLC