AEM Forms Adaptative Table column binding syntax
I created a table in an Adaptative Form. This table is dynamic. So any number of rows can be added from 0 to 10. The table row is repeatable with these values. And when sent, is generating an array of empty elements. The row bind reference is, let's say, "/mytable/rows"
rows: [
{},
{},
...
]
I'd like to know what syntax has to be used in each of the column fields to bind them inside each element of the rows array.
What I expect to achieve is:
rows: [
{ col1: "aaaa" },
{ col1: "bbbb" },
...
]
So far I've tried with:
"col1"
".col1"
"./col1"
"/col1"
Does anyone knows the specific syntax to bind the field of a column inside this object?
Thanks.