I have a call server & need to return 2 arrays. $callBack is the routine included.
<body onload="javascript:parent.getScriptFrame().$callBack('@names','@values')" />
This is the callback target :
function setID(names, values)
{
alert ("Call Server Completed"+names[0]+" "+values[0]);
}
But the data is undefined according to alert. So the callBack is working correctly. The arrays are set in Perl, how do they get back to Perl in one piece ?
TIA
Andy