Since you are using a Signature field, you need to write the code in the
preSign event of the Signature field.You can make a field readonly by
changing the access property. For example: TextField1.access =
"readOnly";If you want to block all the fields in all the rows in
Table1, you could write like Page1.Table1.access = "readOnly";(OR) if
you want to block only specified fields in Table1, you could write like
Table1.Row1.TextField1.access ="readOnly";Let me know if this
helps.FYI--There is a Fr...