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.OnEditing Event

In This Article

Enables you to prohibit end-users from editing data cell values in a specified editor row.

#Declaration

Delphi
property OnEditing: TcxVerticalGridEditingEvent read; write;

#Remarks

Sender specifies the vertical grid whose editor row is about to be edited.

ARowProperties provides access to the editor row’s settings. 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 activated.

Pass False as the Allow parameter to prohibit the vertical grid from activating an in-place editor for the row’s data cell. If True is passed as this parameter, the row’s Properties.OnGetEditProperties and Properties.OnGetEditingProperties events fire, enabling you to dynamically specify the display value formatting editor and in-place editor for the row’s data cell, respectively.

Handle the OnEdited event to respond to deactivating in-place editors.

See Also