Description
|
I am in the process of the customization of the screens of an AS/400 application.
Can I use a Javascript variable in Screensurfer script.
If so, how do I it?
Here is the sample code I am working on..........
------------------------------------------->
function HandleRow( val, row )
{
parent.main.location.href=
"<TEMACRO TRANURL
'type/select?row="+row+"&value="+val+"'>";
}
--------------------------------------------->
Instead of transferring the control to a new URL, I would like to use a <TEACTION PUTFIELD.....>.
Can I do it using these "val" and "row" variables of JavaScript?
|