Mobile
In my previous blog post I introduced data binding. It worked, but there was no mechanism for updating. Updating comes in two flavors, and these are often confused by folks new to databinding: Someone else updates the underlying data; we’d like the display to be updated
The user updates the data on the display, we’d like the underlying data to be updated The first case arises because most of the time you are not the only user of your program – other users may be connected to the same data and while you are looking at your data someone else...