Top "Pipes-filters" questions

Multiple pipes simultaneously in Angular 2

I am working on an Angular 2 project. I have a table with multiple columns. Every column has different logic for …

angular sorting pipes-filters
Angular 2: pipes - How to format a phone number?

I've searched here and there, and I am not able to find something specific about formatting a phone number. Currently, …

angular pipes-filters
Formatting a number to have commas at every 1000 factor

I need to format a number like 1234567 as 1,234,567 but don't know how to do this. I tried using currency pipe …

javascript angular typescript pipes-filters
Invalid argument 'date format' for pipe 'DatePipe'?

This seems to be a simple question. I'm using pipes in my Ionic 2 application for dates format. This is the …

angular date-format ionic2 pipes-filters
How to create and call a pipe from the component in Angular 2?

I want to create a dynamic pipe which I am going to call from the component. import {Component, Pipe, PipeTransform} …

angular pipes-filters
angular 2. Pipes. Cannot read property of undefined

i made a pipe @Pipe({ name: 'orgFilter' }) export class OrgFilterPipe implements PipeTransform { transform(orgs: Organization[], args: String[]): any { console.log(…

angular pipes-filters