I'm sending some data to a Child View from the childViews object of the Parent View.
When that data updates in the Parent, how do I trigger the update in the Child View too? (for it to show the updated data on the child's template)
Currently I'm doing a this.render() in the Parent view (when the data updates) which 'refreshes' the parent along with the child view and forces it to use the updated data.
Just want to know if there's a better way to do this.