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?
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?
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.
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