Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
260
WinGrid summary row not getting updated
posted

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

 

Parents
No Data
Reply
  • 469350
    Verified Answer
    Offline posted

    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. 

Children