I am currently working on a parent component that uses an ajax request to retrieve an array of objects.
Within this component, there are two children components: one displays the objects in a tree structure while the other renders them in a table format. The parent component passes the array to their children through an @input property and they successfully display the content. Everything seems to be functioning as expected.
The issue arises when changes are made to fields within the objects: the child components do not receive notifications of these changes. Modifications are only reflected if the array is manually reassigned to its variable.
Having experience with Knockout JS, I am looking for a solution similar to observableArrays to address this problem.
I have come across information about DoCheck, but I am unsure of how it operates.