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
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