take this data
{
"Firstname": "Jim",
"Lastname": "Smith",
"Birthday": "08/29/1979",
"Likes": [
{ Likes: [ { id: 1, description: "Baseball", rank: 1 }, {id: 2, description: "music", rank: 3 }, { id: 3, description: "Surfing the web", rank: 2}]
} }]
}
First 3 fields bind directly to the grid in 3 columns.
I would like to concatenate the collection of Likes, and display in the final column.
Something like this
<td>Jim</td><td>Smith</td><td>08/29/1979</td><td>Baseball; music; Surfing the web;</td>
I've been unable to find anything like this.