As you can concatenate two records in a single column in a datatable, so far I only do it with one record, but I need to do the two, this in order to optimize the space horizontally of the datatable.
I'm doing something like this:
columns: [
{ 'data': 'C019fechaRegistro' },
{ 'data': 'C019hora' },
{ 'data': 'C019alertaIn' },
{ 'data': 'C019alertaSup' },
{ 'data': 'C019accionIn' },
{ 'data': 'C019accionSup' }]
but I need together the registration date and the time in a single column. How can I do it?