this function receives the row number from a looped recordset. I want to set a hidden form variable to the row number when they click a radio button next to the result row
function editRow(row)
{
var i = row
document.forms[0].edit.disabled = false;
document.forms[0].recordNo.value=i;
}
<input type="hidden" name="recordNo" value="">
what am i doin wrong??Thanks
function editRow(row)
{
var i = row
document.forms[0].edit.disabled = false;
document.forms[0].recordNo.value=i;
}
<input type="hidden" name="recordNo" value="">
what am i doin wrong??Thanks