Hello
I am fairly new to JavaScript so bare with me on this one.
My function looks like this:
<script language="JavaScript" type="text/JavaScript">
function checkForm(theForm){
box1 = frmHR.p_update;
box2 = frmHR.p_hr_update;
if(frmHR.p_update.length){
for...
Thats getting better but I need to change all and not just the last one.
Is there some way of altering your code so that it processes the row in the for that the user selects.
Currently when i run the popup after clicking on the anchor in row 1, your code changes the value in row 2 of p_dept...
That is not an option because my html form is built up in a PL/SQL cursor FOR loop.
They need to be called the same name because the array p_dept is processed in further PL/SQL procedures sitting behind the form.
For this reason i need to either pass an array into the JS function or reference...
I have a form that launches a popup when the user clicks on an anchor link.
The html for the popup looks like this:
<html>
<head>
<script language="JavaScript" type="text/javascript">
function passBack(x)
{
opener.document.frmdept_submit.p_dept.value= x...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.