DataGrid Edit Mode Popup?

Are there any plans to add the editmode of popup to the Blazor DataGrid? Currently only Inline editing is supported which doesn't work well for a larger object.

Such functionality can be generated using Radzen Blazor Studio.

Yeah I’m not clear on why it’s not available without using the studio? I don’t want to use the studio to generate code.

You can do that without studio too. Handle the RowSelect event and open a dialog. Like this:

        protected async Task Grid0RowSelect(BlazorDefault.Models.Sample.Order args)
        {
            var dialogResult = await DialogService.OpenAsync<EditOrder>("Edit Order", new Dictionary<string, object>() { {"Id", args.Id} }, new DialogOptions(){ Height = $"{800}px" });
        }

Radzen Blazor Studio generates the dialog component(s) and all required code to update the database as an added benefit.