Grid reload after edit from

How do I reload the grid after saving the edit?

    protected async Task EditRow(MouseEventArgs args, RadzenBlazorServerApp.Models.sql_database.Vehicle vehicle)
    {
        await DialogService.OpenAsync<EditVehicle>("Edit Vehicle", new Dictionary<string, object> { { "Id", vehicle.Id } });
    }

Check how it's reloaded in our CRUD templates:

I posted in the wrong place

I am using RBS

You can follow exactly the same advice for RBS.

could you please help a little bit more?

I can't figure it out.

appreciate it.

Check the code in the DataGrid RowSelect method in a scaffolded CRUD page. For example:


1 Like

Thank you.

I understood how it worked in your example, I just didn't apply the concept correctly in other cases where I was using a Dialog.

Thank You.