Good day! I've been new to using datatables.
I've been trying to search for solutions regarding merging my data to one column with the same identifier
For instance, I have a data of:
Name | Organization
John Doe | Organization A
John Doe | Organization B
and having an expected value of
Name | Organization
John Doe | Organization A, Organization B
Is there a way I can use columns
columns: [
{ data: 'name' },
{ data: 'organization' }
]
for this to work and if so, what should I add for it to work? Thank you