Hi,
I am using a BindingList as the data source from my UltraGrid. The problem is that the summaries don't always get refreshed. When I add new objects to the BindingList, it refreshes fine. However, when I modify a variable within one of the objects in the list, it doesn't have any effect on the summary, even though I see the cell value changing in the child row itself. Calling Refresh doesn't seem to help either. Any ideas?
Thanks,Dmitriy
Hi Dmitriy,
I assume that the objects in the BindingList are some custom class? If that's the case, then your class probably needs to implement INotifyPropertyChanged in order to notify the BindingList of changes to property values, which will then notify the BindingManager.
Yes, looks like that did the trick, thank you