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
275
UltraGridCell value update event
posted

Hi,

Is there an UltraGridCell value update event?? I want to change the appearance of a cell and the row when the value changes. I am not interested in ValueBasedAppearance property on the column because the appearance is based on my own code.

Is there such an event? Like CellValueChanged?

Regards,

Taiyib.

Parents
No Data
Reply
  • 469350
    Suggested Answer
    Offline posted

    If you want to color a cell based on the value of that cell, you would typically use the InitializeRow event.

    But if you want to update teh appearance of the cell as the user is typing, the event you are looking for is CellChanged. But keep in mind that you cannot use the Value property of the cell inside this event, because the user is not necessarily done typing. So you have to use the Text of the cell.

     

Children