Exam 9A0-410 All QuestionsBrowse all questions from this exam
Question 11

Which script should be used to retrieve every instance of the textfield within a repeating subform?

    Correct Answer: D

    The correct script to retrieve every instance of the textfield within a repeating subform is 'var fields = xfa.resolveNodes('subform[*].textfield');'. The xfa.resolveNodes method is used to return all instances matching the specified SOM expression within the repeating subform, and 'subform[*]' correctly indicates all instances of the repeating subform.

Discussion
badri279Option: D

Correct answer is D

Sony_PanchakshariOption: D

Correct answer id D. B is correct when u know the exact instance you need, when you are looping through all instance using * , D is correct

swaroop1304Option: B

Correct Answer is B