Skip to main content
1 vote
1 answer
438 views

I have this text input with a debounceTime pipe, so that we don't hit the server too often while the user is typing the word: this.keyUp$ .pipe(debounceTime(500)) .subscribe(data => this....
Lou's user avatar
  • 4,514
3 votes
2 answers
2k views

I am trying to reuse existing currency pipe from Angular common. Goal is to have .00 truncated when the value is round. For this I've wrote this piece of code: /** Transform currency string and round ...
Luke's user avatar
  • 396
1 vote
1 answer
4k views

I'm pretty much a standstill with this now guys. I'm using a small service to get the details from an API, returning a JSON object. I am returning this as an Observable from the service method; then ...
Lewis Morgans's user avatar
0 votes
1 answer
562 views

Kindly see the below picture, there is a drop-down button called sort where all the headers are there.if i select any of the header it should display up and down arrow.now its displaying in all ...
user3363946's user avatar
0 votes
2 answers
387 views

In angular 4, I am displaying a list of upcoming birthdays in ascending order. However, it is counting a year as well. I just want to sort it by date and month but not a year. How can i display it ...
tanmay parmar's user avatar
0 votes
0 answers
2k views

I have group checkbox which is having parent and children. I am using the following slackblitz example to achieve that: https://stackblitz.com/angular/nkmjydodvnp?file=app%2Ftree-checklist-example.ts ...
ananya's user avatar
  • 1,041
6 votes
1 answer
4k views

I am trying to format the value with percent pipe in html(Angular2) and i need the percentage value without % sign
Joseph Bineesh's user avatar
0 votes
1 answer
2k views

Currently when using Angular 6 I am getting the following error when I try to use the index pipe for NgFor: Uncaught Error: Template parse errors: The pipe 'index' could not be found (" <ul class="...
Timelog's user avatar
  • 63
-1 votes
1 answer
454 views

How can I bring all the Events that begin inside this day to 30 days? I'd done this pipe but it doesn't work there is an array of events and needs to bring only the events that have dateStart inside ...
Christian Vazquez's user avatar
0 votes
0 answers
199 views

Well, I have an array objects with random values. Ex. var value = [ {"name":"ABC","status":"R","city":"Pune"}, {"name":"PQR","status":"R","city":"Nashik"}, ...
Nitin's user avatar
  • 538
1 vote
0 answers
218 views

I was wondering if it was possible to perform a global refresh on my Angular (2+) app. I am using the OnPush change detection strategy for performance. I have created a service that translates words ...
Stan van Heumen's user avatar
0 votes
1 answer
625 views

trying to make a filter with pipes but when i use the pipe index no longer shows up in table can't find whats wrong. <form> <label>Search</label> <input class="search" ...
Arūnas Vaitkus's user avatar
0 votes
1 answer
1k views

I want to call the my custom pipe inside Injectable service. I checked many threads in stackoverflow. But they talk about using custom pipes inside a component. Can u please help me here, any helpful ...
user1199842's user avatar
0 votes
2 answers
905 views

I am working with Angular 2 and I have to create search filter. So I created a pipe with search logic and injected it in desired component. But while injecting, I am getting error. This is code where ...
Adynh's user avatar
  • 219
0 votes
1 answer
245 views

I'm building an app that has a data set inside it. I need to create search filters for this data set, and for this I'm using Angular pipes. The problem is that i would like to check two data fields ...
mighty_mike's user avatar
  • 1,089

15 30 50 per page
1
2 3 4 5
13