super duper newb question (and I did look through the docs). I have 2 views. One has a tableview (View1) and the other a form to add data (View2). The data is sent to and coming from a REST API. I saw in the guide that it is best to use a ViewModel to communicate between views, but I didn’t see an example of it. When I save new data in View2, I want to send said data to View1's observable list I’ve created for the tableview and tell it to refresh. Currently, I’m manually doing it via
asyncItems
. But I also don’t know a good way to View2 telling View1, “here some new data for your tableview”