Skip to main content
A newer version of this page is available. .
Tab

ASPxGridBase.EndUpdate() Method

Re-enables render operations after a call to the ASPxGridBase.BeginUpdate method and forces immediate re-rendering.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

public virtual void EndUpdate()

Remarks

Grid control allows a sequence of operations that affect its appearance and/or functionality to be performed without having the control render itself after each modification. To do this, the code performing sequential changes to the grid view must be enclosed within calls to the ASPxGridBase.BeginUpdate and EndUpdate methods. This improves performance and avoids unnecessary render operations.

See Also