My target is right now set to column 5:
"columnDefs": [{
"render": function (data, type, row) {
return data;
},
"targets": 5
}],
What I want to do is, instead of targeting it to a specific number, I want to target it to the last column.
What I need is something like this:
"columnDefs": [{
"render": function (data, type, row) {
return data;
},
"targets": last
}],