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
35
Visual Update notification
posted

I'm looking for a way of visually notifying cell updates. What I have now is a BindingList<MyBusinessObject> which satisfies INotifyPropertyChange. This works fine when a value is changed outside the grid. Now what I'd like to do is to change the colour of cells that have their a value changed in this way. I know I can use AfterCellUpdate (or something similar) with the grid but that is only fired when the user changes the value and not when the underlying data is changed from the outside.

 Any ideas?

Parents
No Data
Reply
  • 990
    posted

    Hi,

    As long as your data supports INotifyPropertyChange then you should be able to use the ValueBasedAppearance property of the Column in question.

    If you haven't seen it before it's in the UltraWinGrid Designer under Band and Column Settings/Band[yourBand]/Columns, select the required Column then look near the bottom of the property list.

    Andy.

Children