Posts by ed1l50n • 21 points
7 posts
-
0
votes1
answer33
viewsA: List totaling error using Hash Map
Good people, I thank everyone who at least looked at the question. But this whole process is ok and calculating correctly. After several tests I discovered that the origin of the problem occurred in…
-
0
votes1
answer33
viewsQ: List totaling error using Hash Map
I sort a list in a certain order, then create a Map to total that list by grouping by a key. What happens is that sometimes the values are ignored generating a difference in the total. And I can’t…
-
0
votes1
answer65
viewsA: Problems updating a field based on selecting another field
I identified the problem: the attributes that used "-" proof-item violate the naming convention. It interprets the "-" as a subtraction. Just using Camelcase proof Everything worked normally.
-
0
votes1
answer169
viewsA: I can’t see more than one p-dropdown primeng on the same page
I discovered the problem concerning this issue that I myself raised. What happens is that there was an error in the app-message. By option I removed the tag and treated it differently then all other…
-
-2
votes1
answer65
viewsQ: Problems updating a field based on selecting another field
I don’t have much experience in Angular and I have a problem that seems to be simple. I have a crud master detail, and at the item launch I have a dropdow of products from primeng and after the…
-
0
votes1
answer169
viewsQ: I can’t see more than one p-dropdown primeng on the same page
Have a page that has 4 p-dropdowns primeng but they don’t work, only one opens. Separately all work, but when only 1 on the page. <div class="container"> <form #f="ngForm"…
-
1
votes0
answers456
viewsQ: Typeerror: list.map is not a Function
I get the error described in the title in this situation: carregarCategorias() { this.itemService.listarCategorias().then(lista => { this.categorias = lista.map(categoria => ({ label:…