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

TcxGridEditingController Class

Editing controller for the current View.

#Declaration

Delphi
TcxGridEditingController = class(
    TcxCustomEditingController
)

#Remarks

A grid control does not contain an editor object for every cell it displays. It creates an editor object when a user is about to edit the selected cell. A specific editor is created based on the assigned editor type or default settings. To assign an editor to a column, use the RepositoryItem or PropertiesClass members. Default editors are discussed in the FieldName (for bound mode) and TcxValueType (for unbound mode) topics.

TcxGridEditingController provides members to access a cell editor, open and close it. To test whether an editor exists, see the IsEditing property.

The functionality of the editing controller can be accessed via the View’s Controller.EditingController property.

#Inheritance

See Also