What happens is that when I fill a table using the data tables plugin I do not want for example the paternal or maternal surname or the second name to appear in separate columns, but rather everything appears in a single column, How can I join the columns I need?
options = {
dom: "Bfrtip",
ajax: (data, callback, settings) => {
this.servicioUsuarios.getUsuarios().subscribe(data => {
callback({
aaData: data
})
}, e => {
this.notificaciones.notificacionError(e);
});
},
columns: [
{ data: "id" },
{ data: "login" },
{ data: "nombre" },
{ data: "correo" },
{ data: "fechaAlta" },
// { "defaultContent": "<button >Click!</button>"}
],