I have an issue in sorting date with angular-datables plugins when I want to format them. Let me explain : When I'm using
<td>{{date}}</td>
The result is :
When I'm using :
{{date | date}}
The result is :
But when I'm using :
{{date | date : 'dd/MM/yyyy'}}
The result is :
Even so I declared it as a date format :
_this.dtColumnDefs = [
DTColumnDefBuilder.newColumnDef(0).
.withOption('type', 'date')
];
Any ideas what i'm doing wrong ? Thanks