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

TcxEditingControl.OnEditChanged Event

In This Article

Occurs when changing an open editor’s value.

#Declaration

Delphi
property OnEditChanged: TcxecItemEvent read; write;

#Remarks

The OnEditChanged event is generated when changing an editor’s value. This event is equivalent to the editor’s Properties.OnChange event.

For text editors, the event is fired when a user types within an editor and thus changes the display text. Image editors generate this event when changing images. For check box controls, the event is generated when changing the state.

The value being edited is assigned to the edit value when a user:

  • Selects a value from the dropdown editor;

  • Presses the Enter key within a cell if its text was modified;

  • Changes an image in image editors;

  • Changes the check box editors state;

  • Selects a radio button within a radio group.

In these cases, the OnEditValueChanged event is generated.

See Also