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
932
CellUpdated event is not being fired on XamDataGrid
posted

I have a XamDataGrid bound to an IBindingList, with the list being updated, grid cells are being updated but CellUpdated Event is not being fired.

I am attaching handler as below:

_grid.CellUpdated += new EventHandler<Infragistics.Windows.DataPresenter.Events.CellUpdatedEventArgs>(_grid_CellUpdated);

I also tried a different way of attaching handler just in case same damn intenal implementation has handled the event.

_grid.AddHandler(XamDataGrid.CellUpdatedEvent, new EventHandler<Infragistics.Windows.DataPresenter.Events.CellUpdatedEventArgs>(_grid_CellUpdated), true);

But this does not work either. Also I tried RecordChanged, RecordUpdated, CellChanged but none of them seems to be working.

Has somebody faced such an issue? Any help is appreciated.