PrimeNG: custom sort issue for dates
PrimeNG: <p-table> custom sort issue for dates I am using primeNg <p-table> to implement custom sort for "Quarterly Results" field. <p-table> "Quarterly Results" The date in the "Quarterly Results" field is as below: "Quarterly Results" Q3-2017 2018 2017 Q1-2016 2000 Q3-2018 Q2-2012 Source : https://primefaces.org/primeng/#/table/sort To sort the data I have done below code: HTML: <p-table [value]="documents" (sortFunction)="customSort($event)" [customSort]="true"> <ng-template pTemplate="header"> <tr> <th [pSortableColumn]="quarter"> Quarterly Results <p-sortIcon [field]="quarter"></p-sortIcon> </th> </tr> </ng-template> <ng-template pTemplate="body" let-doc> <tr> ...