I have a button in Row1 of a repeating table that adds additional rows. I want to be able to hide all of these buttons by clicking another button located at the bottom of the form. Can you tell me how to script to count the table instances and then set the presence of each button to be "invisible"?
This is my script that does not work:
var vRows = Table1.instanceManager.count;
for (i=vRows;i>0;i--){
xfa.resolveNode("Table1[" + i + "]").Row1.button1.presence = "invisible";
}