I have a parent component which is getting data from a server through a service. I need some of this data to be passed to the Child component.
I\'ve been trying to p
I'm assuming that the child is getting a subset of the parents data, potentially from a user action (like loading a form when a user clicks on a grid row). In this case I would use an event.
Have the parent fire an event, maybe dataSelected, and the contents of the event would be the data that was selected.
Then have the child listen for those events and when fired load the data from the event into the model.
This will help decouple your components, which always a good idea.