I am getting response from backend LastDate
. I am binding this to my ngModel
and showing in Grid, but in console I am getting this error
Here is the corresponding code
<ngx-datatable-column name="Last Date" prop="LastDate">
<ng-template let-row="row" ngx-datatable-cell-template>
{{row.LastDate| date: 'dd-MM-yyyy'}}
</ng-template>
</ngx-datatable-column>