Posts by Alison Santos • 41 points
3 posts
-
0
votes2
answers63
viewsA: Individual progress bar for each shipment
Hérick Raposo, To remove an item from the array you can try this: removeBehaviorById(id) { this.porcentagem = this.porcentagem.map((behavior) => { if (behavior.value.id == id) { //Primeiro…
-
0
votes1
answer25
viewsA: How to exclude the answer from an if if the input applies to another if?
You can use this logic: if ((n1%2==0) & (n1%3==0)){ Console.WriteLine("O número {0} é um múltiplo de dois e três",n1); } else if((n1%2==0)){ Console.WriteLine("O número {0} é um múltiplo somente…
-
1
votes2
answers63
viewsA: Individual progress bar for each shipment
Good morning, you could test this solution, it may be that you need to adapt something, I have not tested completely. HTML <ion-item *ngFor="let item of apiService.getPorcentagemObservable()"…