I load data into my grid using a WCF service. When a user clicks 'Submit' on my silverlight 2 control, I want to send only the edited rows back to my WCF service for updating. Is there a good way to do this?
|
1
|
|
|
|
|
|
Its better if you monitor the changes on the source objects. It would be easy to write a simple class to register for the changes using the INotifyPropertyChange and keep a list of changed objects (the sources). |
||
|
