Skip to main content
Tab

ASPxGridBase.BeginUpdate() Method

Prevents the grid from being rendered until the ASPxGridBase.EndUpdate method is called.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public virtual void BeginUpdate()

Remarks

Grid controls allow 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 BeginUpdate and ASPxGridBase.EndUpdate methods. This improves performance and avoids unnecessary render operations.

See Also