Is it possible to ONLY make one page read-only in a document?
Hi
I have a button on my test document that makes all fields read only when the salesrep has finished editing.
for (var i = 0; i < this.numFields; i++) {
var fname = this.getNthFieldName(i);
this.getField(fname).readonly = true; // makes all fields readonly
}
It works perfectly, but I've realised that when I add the rest of the pages back into the document, there are fillable fields on pages 2 and 3 that a customer might need to complete once they've received the document.
So, is it possible to make only page 1 read only and leave pages 2 and 3 editable?
Thank you
