I would like to ask if do you have any ideas how to pass multiple pipes in Angular?
Currently, my code is is passing only one pipe.
const customPipe1 = new CustomPipe2();
const customPipe2 = new CustomPipe2();
<ngx-datatable-column
[width]="width"
[name]="cname"
[prop]="cbindProperty"
[pipe]="customPipe1">
</ngx-datatable-column>
I want to add two or multiple pipes in that column. Something like this in a plain html.
{{ birthday | customPipe1 | customPipe2 }}