Expand my Community achievements bar.

access = "readOnly"

Avatar

Former Community Member
I would like to modify the following code to exclude a button named Button2. I am too new to this xfa stuff to filter it out.



regards

Milton



for (var nPageCount = 0; nPageCount < xfa.host.numPages; nPageCount++) {

var oFields = xfa.layout.pageContent(nPageCount, "field");

var nNodesLength = oFields.length;

// Set the field property.

for (var nNodeCount = 0; nNodeCount < nNodesLength; nNodeCount++) {

oFields.item(nNodeCount).access = "readOnly";

}

}
1 Reply