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

TcxCustomDataController.EndUpdate Method

In This Article

Re-enables sending update notifications by the data controller after they were suspended by calling BeginUpdate.

#Declaration

Delphi
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