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
1015
CellDataUpdated Event
posted

According to the documentation, this event is only fired when the control that is bound to the DataSource changes the DataSources data, not when the DataSource data is changed directly by code.

I need an event that will fire even when the data is changed by code. Is there a way I can do that? Can I define my own event? How can I do that?

Parents
  • 469350
    Suggested Answer
    Offline posted

    If there is such an event, it would have to exist on the data source, not on the grid. The grid is not the source of the change when you change a value in the data source via code. In such a case, the grid responds to the event, so there's no reason for it to fire an event.

    What exactly do you need to do in response to this change. If you want to do something to the grid row or cell, then perhaps you should be using the grid's InitializeRow event.

     

Reply Children