Hi,I'm making a livecycle form which consists several subforms named
"person1", "person2".. like that. Within each person# subform, there is
an another subform "task". It is repeatable by clicking a button to 'add
instance'. There is a checkbox within "task" subform.My problem: I need
to add an "if" condition depends on the status of that check box. if
(xfa.resolveNode("task["+ i +"].CheckBox1").rawValue == false) {
********* }I think that " i " value in above code should be the index of
relevan...