9A0-410 Exam QuestionsBrowse all questions from this exam

9A0-410 Exam - Question 11


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

Show Answer
Correct Answer: CD

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

3 comments
Sign in to comment
badri279Option: D
Feb 25, 2020

Correct answer is D

swaroop1304Option: B
May 13, 2020

Correct Answer is B

Sony_PanchakshariOption: D
Jun 11, 2020

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