Error: 'document.forms.0.Docunid_5.value is null or not an object
From function in JS Header in Lotus Notes form:
function saveWebViewDSFF(docnumber)
{
var docID = eval("document.forms[0].Docunid_" + docnumber + ".value");
var Comment9 = eval("document.forms[0].Comment9_" + docnumber + ".value");
var agentPath = "//www.mananua.com/foliw/ekupulibrary.nsf/(SaveWebViewDSFF)?openagent&unid=" + docID + "& Comment9=" + Comment9;
document.getElementById("agentOutput").src = agentPath;
}
evalisn't necessary; just usedocument.forms[0]["Docunid_" + docnumber].value;instead, not that it will solve the problem. – PleaseStand Nov 21 '10 at 23:45