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

GridDataItemDeletingEventArgs.Reload Property

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

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v21.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 DataItemDeleting event fires when a user confirms the delete operation in the delete confirmation dialog. Handle this event to check user access permissions and delete a data item from 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