Use for discussion of Angular 2+ pipes
I'm using the date pipe to format my date, but I just can't get the exact format I want without …
date angular angular-pipe date-pipeI'm not able to translate this code from Angualr 1 to Angular 2: ng-repeat="todo in todos | orderBy: 'completed'" This is what …
angular angular2-template angular-pipePipes are filters for transforming data (formats) in the template. I came across the pipe() function as below. What does …
angular rxjs angular-pipe rxjs-pipeI am trying to use a custom pipe to filter my *ngFor loop using an input field with ngModel. With …
angular angular-pipeWhen I use my custom pipe in a template, it is like this: {{user|userName}} And it works well. Is …
angular angular-pipeI am trying to figure out how to use a pipe within a reactive form so that the input is …
angular angular-reactive-forms angular-pipeIn this scenario, I'm displaying a list of students (array) to the view with ngFor: <li *ngFor="#student of …
angular angular2-template angular2-directives angular-pipeI'm trying to convert a timestamp to a date format using Angular pipes. I wrote this in the HTML template: {{…
angular typescript angular-pipeWhen using the Angular keyvalue pipe to iterate over an object's properties as follows: <div *ngFor="let item of …
angular angular-pipe@Pipe({name:'myPipe', pure: false}) I am unable to understand impure pipes. What's the difference between pure and impure pipes? …
angular angular-pipe angular2-pipe