Skip to main content

TcxCustomVerticalGrid.OnEditing Event

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

Declaration

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