I have an Adobe AIR application for desktop. One window contains a datagrid which holds a collection of to-do notes; user can edit a specific note with an "edit note" window which is spawned off by double-clicking a row in the datagrid. I'd like to update both the note item in the datagrid as well as the "edit note" window when the edit is committed. In my case, at edit commit, a dao method is called to commit the data, which triggers a callback that updates the dataprovider of the datagrid (an arraycollection), which updates the datagrid items including the item just being edited. My question is how to go about updating the "edit note" window.
This is my approach for now: When an "edit note" window spawns off, I keep a note of the item id for that note and start watching the collection change event on the arraycollection. Each time the collection change event occurs, I inspect each item inside the collection to see if an item with the same id can be found. If an item with the same id is found, I reset the presentation model for the "edit note" window with the info from this item.
Is there any easier/better way(s)? By easier ways, I mean for example "binding" the presentation model with the "edit note" window the moment the window is opened. Is this possible?