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

A department within an organization has a business requirement

To create a dynamic table in which the user can add rows. Instance Manager will be used to meet this requirement.

Which line of code will add another row?

    Correct Answer: A

    To add a new row dynamically in a table within a form, the correct line of code is typically in the format 'row_name.instanceManager.addInstance()'. This method is specifically used to manage instances of repeating subforms, therefore, 'row_name.instanceManager.addInstance()' correctly addresses the need to add a new row.

Discussion
sg0206Option: A

Absolutely wrong answer. A is the correct one. You can write xfa.resolveNode("Table1.Row1[0]").instanceManager.addInstance(); on click event and it iwll work