Posts by Franco Genaro • 29 points
6 posts
-
0
votes1
answer741
viewsQ: Changing parameters to Modal
I’m having trouble passing parameters to my Modal, I would like to present the data of the selected tuple, I was able to isolate the value properly (atestei by the console.log), however, this same…
-
0
votes2
answers1227
viewsA: Filter in my table created with Ngfor
Complementing the answer of @Gabryel, which was correct, in the implementation it was only necessary to apply this filter in the variable "Spreadsheet" and not in the "Filter Spreadsheet", after…
-
0
votes2
answers1227
viewsQ: Filter in my table created with Ngfor
I created a table with Ngfor (actually, my whole project uses ngFor structures as default), I saw that there is an Ngrepeat and there is a filter for it. In order to avoid migrating my ngFor…
-
0
votes2
answers791
viewsQ: Formgroup does not take default values
The proposal of this page would be to update my database, however, the form is only considering the changed values, that is, if any field is not changed in the form this will be changed to ''…
-
0
votes2
answers1648
viewsA: Angular error: Staticinjectorerror(Appmodule) for Activatedroute
Solved, the error was in the import, it was to import the router @Angular and not @angular. Correct import: import { Component, OnInit, Input } from '@angular/core'; import { FormGroup, FormControl…
-
2
votes2
answers1648
viewsQ: Angular error: Staticinjectorerror(Appmodule) for Activatedroute
It’s a problem when I ask my Activated route, I already have my application pass the ID properly to the URL and the mapping already includes the Routermodule.Forroot() on the routes. App module:…