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

TcxCustomGridTableView.OnEditChanged Event

In This Article

Occurs when a cell is edited within the current View.

#Declaration

Delphi
property OnEditChanged: TcxGridCustomTableItemEvent read; write;

#Remarks

This event fires when changing the editor’s value and this event is equivalent to the editor’s Properties.OnChange event.

For text editors, this 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 their state is changed.

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 state of check box editors;

  • Selects a specific radio button within a radio group.

In these cases, the OnEditValueChanged event is fired.

See Also