I am trying to create a column that can display a dynamic number of values separated by a comma. This is a a controlled field that allows between 0 and 3 entries. For example, my JSON data looks like this (sanitized by hand, so apologies if I get a bracket wrong or something):
Attempt 3:
"aoColumnDefs": [
{
"fnRender": function ( o, val ) {
return val.join
},
"aTargets": [ 1 ]
}
],
Any ideas (I have been able to $.map over the data, assign it to a value, and then display it in the console, but when I try to return the value the table stops rendering.)