Skip to main content

GridDataItemDeletingEventArgs.Reload Property

Specifies to reload Grid data after the DataItemDeleting event handler is processed.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

public bool? Reload { get; set; }

Property Value

Type Description
Nullable<Boolean>

true to read Grid data; otherwise, false.

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, delete a data item from the underlying data source, and reload Grid data.

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