I have a variable containing JSON, for example:
[
{
“role”: “Team Lead”,
“workgroup”: {
“name”: “Team Alpha”
}
},
{
“role”: “Developer”,
“workgroup”: {
“name”: “Team Beta”
}
}
]
In Camunda Form I added a Table component and binded it to this variable.
In the Form Table header items, when I add a label ‘Role’ and set the key to ‘role’, everything displays correctly in the table cell. However, when working with nested structures, such as setting the label to ‘Workgroup’ and the key to ‘workgroup.name’, the cell remains empty. How can I properly configure the Form Table to display values from a nested JSON structure?