All Questions
Tagged with angular-lifecycle-hooks angular6
4 questions
1
vote
0
answers
311
views
fullCalendar click event not working after updating calendar header on ngAfterViewInit event
I have implemented FullCalendar in angular app and bind some events in full calendar. I have requirement to update calendar events with new data on button click plus display Day1, Day2, Day3... in ...
0
votes
0
answers
86
views
Angular 6 app Component and child components Execution
I'm developing an application using Angular 6 and I'm looking for some help/guidance on this. Below is my app component.
app.component.html
--header--
-- router outlet--
--footer--
And I'm ...
0
votes
0
answers
79
views
How to identify that *ngFor loop has finished changes in markup? [duplicate]
I have an array of companies getting from a service and binding that array data with the help of *ngFor directive.
Now, I want to show a whole page covered 'waiting..' till the data gets bind to the ...
0
votes
1
answer
2k
views
Angular 6 subscribe Event on constructor called multiple times
In my component on constructor (Child Component) I add simple event
This is my code:
this._modalService.onHidden.subscribe(
result => {
console.log("_modalService.onHidden");
...