Hi,
I'm trying to populate table in Adaptive Form from json result and i have set the Table Row1 as repeatable by setting Min count as 1 and max count as -1.
On change of text field value I'm invoking service and getting the json result. Now I need to iterate the for loop and populate the table. I'm able to assign to the first row by panel1585577468838.table1585577511230.Row1.TicketNo.value = row.u_ticket_no;
In the loop I'm creating new rows using addInstance() and they are getting created.
panel1585577468838.table1585577511230.Row1.instanceManager.addInstance();
But I'm not able to figure out how to assign to fields from 2nd row. How do i access 2nd row.
I tried below options and didn't work.
panel1585577468838.table1585577511230.Row1[0].TicketNo.value = row.u_ticket_no;
or
panel1585577468838.table1585577511230.Row2.TicketNo.value = row.u_ticket_no;
or
panel1585577468838.table1585577511230.resolveNode("Row1["+i+"]").TicketNo.value = row.u_ticket_no;
Please let me know if you need any additional details.
Thanks & Regards
Suresh
@Mayank_Gandhi