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

TcxTreeListOptionsData.ImmediatePost Property

Specifies if a data controller posts the record being edited via a cell editor to a data source on moving focus to another cell in this record.

#Declaration

Delphi
property ImmediatePost: Boolean read; write; default False;

#Property Value

Type Default
Boolean False

#Remarks

Normally, a data controller does the following prior to moving focus:

  • Applies changes made in the currently active cell editor to the edit value

  • Saves the edit value to the record and closes the cell editor

  • Moves focus to another cell and activates its editor

Set this property to True to let the data controller perform these operations and post the record to a data source with a call to the data controller’s Post procedure.

The default value of the ImmediatePost property is False.

See Also