Posts by Edson Camargo • 100 points
11 posts
-
0
votes1
answer231
viewsQ: How to make Lazy loading correct at Angular 6, not known component error
I’m trying to do Lazy loading to load certain modules when hitting the URL that really needs to load these modules, however I am getting the following error: core.js:1673 ERROR Error: Uncaught (in…
-
0
votes1
answer40
viewsA: I’m having problems with Jquery scroll
I arranged the problem as follows, I created a boolean variable to validate if I was in the component that should scroll or not, it is started as true, because we know I am in the component and when…
-
-2
votes1
answer40
viewsQ: I’m having problems with Jquery scroll
Hello, I am using the scroll function you have in Jquery’s Document, everything goes very well, at least while I am in the component that has the href to scroll, but when I exit this component, I…
-
1
votes1
answer874
viewsA: Angular 7 - Reload datatables after deleting an item from the table
Hello, you can try updating the table using setTimeout(), use a *ngIf="show" (in the table) and a Boolean variable, where it will cause the table to appear and disappear from the DOM. For example:…
-
1
votes4
answers84
viewsA: FIREBASE - Encase Files to redirect page only after saving data to Firestore Firebase and updating Display name
You could try to do in the following way each of the functions: return new Promise((resolve) => { resolve(result); });
-
1
votes4
answers84
viewsA: FIREBASE - Encase Files to redirect page only after saving data to Firestore Firebase and updating Display name
Try to place one function inside the other. Leaving the function that must be performed last more internally. this.one().then(() => { this.two().then(() => { }); });…
-
0
votes3
answers28
viewsA: Show url name on page
The get_full_path() method returns "half" of the page address, or rather returns the address of your page without the domain. For example, if the address is:…
-
1
votes1
answer360
viewsA: Angular 7 - toPromise returns no error
Both are asynchronous, the error may be the way the API value is returning, for example the Content-Type.
-
3
votes1
answer257
viewsQ: How do I periodically trigger a function to update data in each instance of the Angular 5 application?
I need to have a data list updated every 5/10 minutes, this data which is brought from a Spring Boot API with Mysql storage, through a request made by Angular. I would like to know some way to keep…
-
0
votes2
answers1305
viewsA: Parent component receiving child component data
You could use @Output to transfer data from the child component to the parent or maybe Eventemitter in a service to make the data global.
-
0
votes0
answers49
viewsQ: Inject component into another component
I would like to know, if I can inject a component into another component, I have a function within a component and when I go to do something into another component, I would like to call that…