Hello,
I use a dependent field (Field1) from a lookup table. However, this field however is editable and I want it to be read-only.
Field2 is another edit-field.
I have put JavaScript in the page before the </BODY> tag.
<script type="text/javascript">
document.forms.editform.value_Field1.disabled = true;
document.forms.editform.value_Field2.disabled = true;
</SCRIPT>
The result is Field1 is still editable and Field2 is read-only.
Could anyone help me ?
Thanks
Jo van Duin