//부모창<script language=javascript>

<!--

function winopen(){

var urlLink = "test01.jsp";

condeptWin = window.open(urlLink, 'test', 'status=no, scrollbars=no');

condeptWin.focus();

}

//-->

</script>

<html>

<head>

</head>

<body >

<form name=frm>

<table id=table1>

<tr class=whiteTR>

<td>

<input type=text name=test_select_index value=''>

</td>

<td>

<img src='../../images/button/btn_ok.gif' style='cursor:hand' onclick='winopen();'>

</td>

</tr>

</table>

</form>

</body>

</html>

//자식창

<script language=javascript>

<!--

function clean(obj){

if(obj.value==1){

opener.frm.test_select_index.outerHTML = "<input type=text name=test_select_index value='1번 check box

선택'>";

} else {

opener.frm.test_select_index.outerHTML = "<input type=text name=test_select_index value='2번 check box

선택'>";

}

}

//-->

</script>

<html>

<head>

</head>

<body>

<form name=frm>

<table id=table1 border=1>

<tr>

<td>

<input type=radio name=chk1 onclick='clean(this);' value='1'>

<input type=radio name=chk1 onclick='clean(this);' value='2'>

</td>

</tr>

</table>

</form>

</body>

</html>

-----:::::::::::::::::::::::::-=0-----------------

자식창에서 부모창의 서버컨트롤에 접근할때...

form1.부모창의 컨트롤의 네이스페이스를 포함한 아이디를 적어야 된다.속성 = 값;

//프로그램을 짜는 방법은 여러 가지가 있겠지만..

위에 님이 말씀 하신 것처럼 index 배열을 사용하셔두 좋구요..

저처럼 outerHTML을 사용하셔서 컨트롤 해 주셔도 됩니다.

어떻게든 원하는 모양을 만들면 되는거죠.ㅎㅎ

즐프하세요

Posted by 퓨전마법사
,