I have a datatable
with some dates and these do not take the format of DD-MM-YYYY I have been testing in several ways (especially this but I do not quite understand the operation exactly.
$(document).ready(function() {
$('#tabla_clientes').dataTable({
"aaSorting": [
[0, "desc"]
],
"aoColumnDefs": [{
'bSortable': false,
'aTargets': [5]
}]
});
});
I have that code and it looks like this:
He does not order the dates as dates, but as if they were text. What is failing?