DxPivotGridListEditor.BeginUpdate() Method
Suspends List Editor updates caused by parameter changes and method calls until the EndUpdate() method is called.
Namespace: DevExpress.ExpressApp.Blazor.Editors
Assembly: DevExpress.ExpressApp.Blazor.v26.1.dll
Declaration
Remarks
Enclose your code in the BeginUpdate() - EndUpdate() method calls to suppress visual updates and improve performance when you make multiple changes to the List Editor.
Each call to BeginUpdate() should be paired with the EndUpdate() call. The BeginUpdate() method locks the component to prevent it from re-rendering after each modification. The EndUpdate() method unlocks the control to allow all the changes to be applied.
Implements
See Also