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

GridEditModelSavingEventArgs.Reload Property

Specifies whether the Grid should reload its data after the EditModelSaving event handler is executed.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v22.2.dll

NuGet Package: DevExpress.Blazor

Declaration

public bool? Reload { get; set; }

Property Value

Type Description
Nullable<Boolean>

Specifies whether the Grid should reload its data.

Remarks

The EditModelSaving event fires when a user submits the edit form or saves changes in the edit row, and validation is passed. Handle this event to check user input and access permissions, and post updates to an underlying data source.

You can call the Grid’s Reload() method in the event handler to reload data manually. In this case, set the Reload event argument to false to prevent unnecessary repeated reload.

For more information about reload logic, refer to the following help topic: Save Changes and Reload Data.

See Also