i have a parent component (name steps, i use material-step) and this parent component's have 2 child component.
This child components using same model:
i push data in the listing model with many functions. Later, i want to update the selected index in the step-2 but not update. Update was success on the change function but later it's getting back to its old self.
i try too many methods for update object in object array but can do nothing.
parent-component:
step-1:
step-2:
Assuming you want the parent component to update listingModel as per the changes you make in one of the children components, you need to use two-way data binding (that is, @Input and @Output).
Once you do that, Angular should be smart enough to propagate the changes from the parent to the other child, because you are already using data binding.