Use for discussion of Angular 2+ pipes
I have read this post and this article. I believe I have done everything suggested: added the pipe to a …
javascript angular iframe angular-pipeI'd like to add some additional functionality to the basic angular2 pipes. ie. some extra formatting done on the currency …
angular angular-pipeI'm trying to make a shared module, but it's don't want to work somehow. The shared module looks like this: …
javascript angular angular-pipeI want to pass a value to the child component. this value is an Observable, so I use async pipe. &…
angular rxjs observable angular-pipe async-pipeI'm testing Angular's keyvalue pipe with simple code: import { Component } from '@angular/core'; @Component({ selector: 'app-root', template: `<div *…
angular angular-pipeI want to make a custom currency pipe using the built-in currency pipe. The way I want to use is {{ …
angular angular-pipe angular2-custom-pipesI made a Pipe as follow: import {Pipe, PipeTransform} from '@angular/core'; import { Radio } from '../../models/radio'; @Pipe({ …
angular angular-pipeI want to build a search box in angular, that would return the array of item,and also highlight the …
angular angular6 angular-pipeI would like to dynamically set <input type='text' placeholder=' {{ 'somestring' | getText }}'> placeholders using pipes. (this …
angular angular-pipeIf I do this in an Angular 5 template: {{0.7 | percent:'1.2-5'}} I get this as expected: 70.00% However, when I …
angular angular-pipe