Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxCustomDataController.OnRecordChanged Event

In This Article

Fires in response to data changes.

#Declaration

Delphi
property OnRecordChanged: TcxDataRecordChangedEvent read; write;

#Remarks

The OnRecordChanged event is raised in response to data changing, as a result of either editing cell values in a data-aware control or the result of changing values via code. The ADataController parameter represents the data controller whose data has been changed. The ARecordIndex parameter identifies the record that has been altered. If the AItemIndex parameter’s value is not -1, then this parameter identifies the column whose value has been changed. If several columns’ values have been changed at once, this parameter returns -1.

Note that the OnRecordChanged event is raised only when working in provider or unbound mode.

See Also