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

TcxCustomVerticalGrid.OnEdited Event

In This Article

Enables you to perform specific actions prior to deactivating the currently active in-place editor.

#Declaration

Delphi
property OnEdited: TcxVerticalGridChangedEvent read; write;

#Remarks

This event fires once editing of a data cell’s value is complete and the changes are about to be stored or canceled.

Sender specifies the vertical grid whose in-place editor is about to be deactivated.

ARowProperties provides access to the settings of the editor row associated with the in-place editor. Use the ARowProperties sub-properties and the vertical grid’s FocusedRecordIndex property to identify the editor row and its data cell whose in-place editor is about to be deactivated.

Handle the OnEditing event to dynamically prohibit end-users from activating in-place editors for specific editor rows.

See Also