I have a dynamic table that I built using for statments that lies in a form. For the submit button, I am calling a function from the head. Here is the function..
var changecounter;
function change()
{
for(changecounter=0; changecounter < window.parent.ID.length; changecounter++)
{
var boolvalue = window.parent.ID[changecounter][4];
bOptionSet(window.parent.type,window.parent.ID[changecounter][0],frmAlert.boolvalue.value);
switch (sOptionLastStatus())
{
case "OK":
break;
case "NS":
alert("You currently do not have the security to update system option " + window.parent.ID[changecounter][1] + ". To proceed, go to the Eagle Browser and sign on as a user with security to update Options Configuration.");
break;
case "NO":
alert("Unknown Error occurred while attempting to change " + window.parent.ID[changecounter][1] + ". Please make a note of what you were doing when this error occurred, and send it in an email to
[email protected].");
break;
default:
alert("Unknown Error occurred while attempting to change " + window.parent.ID[changecounter][1] + ". Please make a note of what you were doing when this error occurred, and send it in an email to
[email protected].");
break;
}
}
}
I am getting the error that frmAlert.boolvalue.value is null or not an object. Can anyone point me in the right direction?
Clay Hess