user377486
user377486

Reputation: 695

DevExpress XPF GridControl: event after edit value changed?

I am using a DevExpress.Xpf.Grid.GridControl , where one of the columns is bound to a property with getter and setter, and is therefore editable.

The class the grid is bound to cannot be modified.

I'd like to have an event fired when the value of that column is edited, so to trigger some operations. With the WinForms version, there was an event RepositoryItem.EditValueChanged event. The XPF version of GridControl replaced RepositoryItem with BaseEditSettings, yet I couldn't find an equivalent to the EditValueChanged event.

Upvotes: 0

Views: 6497

Answers (1)

DmitryG
DmitryG

Reputation: 17850

I believe the TableView.CellValueChanged event should suits your needs.

Related help-article: Obtaining and Setting Cell Values

Upvotes: 1

Related Questions