Skip to main content

TcxCustomGridTableView.OnEditChanged Event

Occurs when a cell is edited within the current View.

Declaration

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