RowDoubleClick i cant assing a EventCallBack

Hi
I have a Datagrid with RowDoubleClick Event but i can assgin it a Event callback

the event Callback is this

protected async Task Grid0RowDoubleClick(DataGridRowMouseEventArgs<EmpleadoDto> args)
{
    var dialogResult = await DialogService.OpenAsync<EditEmpleado>("Editar Empleado", new Dictionary<string, object>() { { "Id", args.Data.Id } });
    await InvokeAsync(() => { StateHasChanged(); });
}

always say

thanks in advance
Have a nice day

You are missing the generic argument.

Try setting TItem as well:

<RadzenDataGrid TItem="EmpleadoDto" ...>
1 Like

sorry really sorry , i dont know why i was deleted , just as you mentioned I see it, thanks a lot

sorry really sorry , i dont know why i was deleted , just as you mentioned I see it, thanks a lot