Radzen DataGrid Temporarily Disable Row Selection

Hi,
I would like to disable the row selection while the DataGrid is in Inline EditMode.
Is it possible?

Thank you,
Ivan

Hi @itemelkov,

Maybe you can set AllowRowSelectOnRowClick to false in this case. You can bind it to a variable similar to this demo:

Wow that was quick!

I tried to modify it in the code behind:

try
        {
            frequenciesGrid.AllowRowSelectOnRowClick = false;
            await frequenciesGrid.EditRow(frequency);
        }
        finally
        {
            frequenciesGrid.AllowRowSelectOnRowClick = true;
        }

But it didn't work.
Am I missing something?

Thanks,
Ivan