row changed indicator

In my application I am using DataBinding similar to your sample Indexer Binder Demo.

I added a column with celltype "checkbox" which shows when the row has changed.

In my data class I added the pr

public bool HasChanged
{
get
{
return _hasChanged;
}
set
{
value = _hasChanged;
OnPropertyChanged("HasChanged");
}
}




2 Replies

MF Mary Fontana June 13, 2011 05:22 PM UTC

sorry I didnt finish my previous message.

But I created a a "Save?" column:

Binding = new Binding("HasChanged") { Mode=BindingMode.TwoWay }, MappingName="HasChanged",
HeaderText="Save?"

but when another cell has changed, the "HasChanged" cell is not updated.

Is there a better way to implement what I am trying to do?

Thanks in advance



RA Rajasekar Syncfusion Team June 14, 2011 02:08 PM UTC

Hi Mary,

Thanks for your update.

We have prepared the sample based on your requirement, Please find the sample in the below location,

Sample:< http://www.syncfusion.com/uploads/redirect.aspx?&team=support&file=WPF_GDC_CheckBox653364425.zip >

Please let us know if you have any queries.

Thanks,
Rajasekar



Loader.
Up arrow icon