Hello,
When adding a row in a repeater on the first page of the form, clicking next and then going back using the navigation bar, the added rows and the inserted data are not showing.
The debug data actually do show the new row's data.
my structure is:
container with fields:
full_name[0]
phone[0]
Repeater with:
full_name[n]
phone[n]
[full_name] => Array
(
[0] => Michael
[1] => Joe
)
[phone] => Array
(
[0] => 351-2222222
[1] => 555-3333333
)
if I put a default value behavior with {data:full_name.1} I get the data inside the field.
Thought using {data:full_name.n} but it does not work.
Do I need to write a JS + PHP to loop the data back to the rows and also trigger the clone according to the data array?is there a different or sample solution for that?