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?
views:
294answers:
1
+1
A:
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).
Shawn Wildermuth
2009-01-11 03:03:42
thanks Shawn. The class I am binding from implements INotifyPropertyChanged automatically. Are you suggesting to write another class? I'm not sure where that fits in
Scott
2009-01-11 05:37:31