Hii hubertc!!
plz try this one
i think "lkf1" was not getting disabled in ur code because of it can be array of objects in ur code,so if possible put ur code too.
below is correct,check it!!
<form name="form">
<input type=radio name=dbtSpb1 value=P onclick='return fillin()'; >
<input type=button name="lkf1" value="lkf1">
<input type=button name="dbt1" value="dbt1">
present
</form>
<script language='Javascript'>
function fillin()
{
document.form.dbt1.disabled=true;
document.form.lkf1.disabled=true;
return true;
}
</script>
Cheers :)
vinod
|