In A.jsp
- Code: Select all
{
child = open
(
"ZSOR_zau_R.jsp?lineno="+line,
"ZSOR_zau_R",
"width=400,height=200,scrollbars,resizable"
);
function keep_child_on_top ()
{
if (child != null)
if (child . closed)
child = null;
else
child . focus ();
}
In ZSOR_zau_R.jsp I am returning values to text box whose name is dyanamic
- Code: Select all
function exit (matnr1,lines)
{
if (lines=='10')
opener . document . name1 . zdist10. value = matnr1;
if (lines=='20')
opener . document . name1 . zdist20. value = matnr1;
close ();
}
</script>
In the above code instead of zdist10,zdist20 i want zdist + lines where lines is comming from parameter.
can anybody help?



