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?

link|improve this question

72% accept rate
I guess my problem partly comes from the fact that dataprovider of the datagrid is bound to the arraycollection that ultimately gets set by the data access layer. But the "edit note" presentation model comes from the "selected item" of the datagrid. – mobileTofu Mar 13 '11 at 23:26
Along my way of doing some research and learning the fundamentals, I've found these two patterns are helpful, both from Martin Fowler: 1. "Separate Query from Modifier"; 2. "Observer Synchronization". Also this code dives into great details: code.google.com/webtoolkit/articles/mvp-architecture.html – mobileTofu Mar 20 '11 at 21:12
Basically the rule is that when you modify the model, if there is no "observable" side effect, you can query the model in order to refresh your UI; but if there are possible side effects (in my case modifying either the note list or the edit note screen will possibly affect the other one), you have to have a separate method to refresh your screen; which could be done through a centralized object such as an AppController. – mobileTofu Mar 20 '11 at 21:17
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.