I have a data stucture such as the following:
data: [
{
“field_1”: “Patrick”,
“field_2”: “Summers”,
“field_23_options”: [
{
“id”: “blue”,
“label”: “blue”
},
{
“id”: “purple”,
“label”: “purple”
},
{
“id”: “reddish”,
“label”: “reddish”
}
]
}
For the grid, what I want to do for “field_23_options”, is to display the array of results in a concatendate string or ulimately shown as separate tags within the cell. How would I do that?