Question
How do I lock the fields on a page?
Hello, help me please.
We have an electronic form with several pages and the same is populated by several people, I would like you to lock the fields on each page or select the desired field with a JS on a button.
| I know the JS that locks every form. |
|---|
for (var i=0; i<this.numFields; i++) { var f = this.getField(this.getNthFieldName(i)); if (f==null) continue; f.readonly = true; } |
Att,
Rafael Albino