Blazor DropDown open not correctly in DataGrid

Hi.
I inserted DropDown into the DataGrid which does not open correctly
DataGrid opens in a new dialog (modal window)

code:

<div class="container-fluid">
    <div class="row">
<!--...-->
        <RadzenGrid Data="@firms">
        <Columns>
            <RadzenGridColumn TItem="Model" Title="Страна регистрации клиента">
                <Template Context="data">
                    <RadzenDropDown Data="@countries" TextProperty="Alpha2Code" ValueProperty="Id"/>
                </Template>
            </RadzenGridColumn>
        </Columns>
    </RadzenGrid>
<!--...-->
    </div>
</div>

image

How to fix this problem?

We will try to handle this in our next update.

1 Like

Thank you for answering, I look forward to the next release, thx

Should be fixed in Radzen.Blazor 0.0.68:

1 Like