python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Why am I getting this error?pipe is not a function
This returns the dropdown options available to be displayed. I'm assuming the problem is with the .pipe but I can't seem to correct it.
return this.lasService.getLasDropDownOptions(true)
...
Matt
Votes: 0
Answers: 1
Angular - How to implement switchMap for multiple http requests?
In my project, I sometimes want to update the available options in a list when the user changes the selected value in another list. To do this, I've used valueChanges with the pipe operator and switch...
Chris
Votes: 0
Answers: 2
Angular Currency pipe with decimals
I have my input with currencyPipe, it works, but sometimes i need to add decimals numbers, but with the code that i'm using i can't do it.
this.form.valueChanges.subscribe(res => {
if(res.tot...
Alejandro Avalos
Votes: 0
Answers: 1
Can promises in Angular pipes break an application?
I have this small library that provides a translation pipe. Everything works well, if I use Observables. The relevent code is here:
https://gitlab.com/tobias47n9e/angular-fluent/-/blob/master/projects...
tobias47n9e
Votes: 0
Answers: 2