vote up 0 vote down star
1

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?

flag

80% accept rate

1 Answer

vote up 1 vote down check

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).

link|flag
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 Jan 11 at 5:37

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.