Avatar

Level 2

I have text fields on this page along with Override button. I have written code to lock each and every field using below script:

Form.Page.Field.access = "protected";

But this is not working.

So I locked whole page using Form.Page.access = "protected" script. It worked but Override button also got locked which I don't want.

To unlock Override Button, I have written Form.Page.Override.access = ""; script, still it is locked.