TcxCustomDataController.EndUpdate Method
Re-enables sending update notifications by the data controller after they were suspended by calling BeginUpdate.
Declaration
procedure EndUpdate;
Remarks
Use the EndUpdate method to re-enable sending update notifications by the data controller after BeginUpdate was called. Use the BeginUpdate and EndUpdate methods when you perform a series of operations, each of which leads to refreshing data in the data controller (inserting records, modifying record fields). See the BeginUpdate description for more information.
Note
Do not call the Append, Insert, Post, SetEditValue, and FindRecordIndexByText methods within the BeginUpdate/EndUpdate and BeginFullUpdate/EndFullUpdate blocks.
See Also