Hello Experts,
I am working on components in Angular 1.5. I have a requirement similar to this
stackoverflow question
In the plunker I have two components Header and Main. If I click on List button (Header) , it is showing "list" text in the Main component. My question is instead of showing simply "list" text it should call API (getdata()) and show records in the Main component.I am little bit confused when / where to call getdata function in the Main component. Tried on init() function but the control is not coming to Main componet after button event happens at Header component.
Thanks in Advance