9A0-410 Exam QuestionsBrowse all questions from this exam

9A0-410 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?

Show Answer
Correct Answer: AC

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

1 comment
Sign in to comment
sg0206Option: A
Sep 16, 2019

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