radzenhq / radzen-blazor

Radzen Blazor is a set of 90+ free native Blazor UI components packed with DataGrid, Scheduler, Charts and robust theming including Material design and FluentUI.
https://www.radzen.com
MIT License
3.52k stars 786 forks source link

[Issue] RadzenDialog/RadzenDropDown #872

Open blazorber opened 1 year ago

blazorber commented 1 year ago

Describe the bug Issue found on a android tablet using chrome browser.

Im using a RadzenDialog with a RadzenDropDown in it. When I focus the dropdown and scroll down the dialog, the dropdown-item-list is scrolling down as well. It is not anchored.

 <div class="row">
        <div class="col-12 col-sm-6 p-2" >
            <RadzenLabel  />
            <RadzenDropDown Placeholder="..."
                            AllowClear="true"
                            @bind-Value=@_viewModel.ID
                            Style="display: block; width: 100%"
                            AllowFiltering="true"
                            FilterCaseSensitivity="FilterCaseSensitivity.CaseInsensitive"
                            FilterOperator="StringFilterOperator.Contains"
                            Data=@_viewModel.List
                            TextProperty="Text"
                            ValueProperty="ID"
                            ClearSearchAfterSelection="true" />
        </div>
</div>

Expected behavior dropdown-item-list should be anchored at the dropdown

Screenshots Focus dropdown: image

scrolling down: image

If you need further informations, let me know. I am grateful for any help. Thanks!

blazorber commented 1 year ago

This looks similiar: https://forum.radzen.com/t/dropdown-selection-list-not-anchored-when-scrolling/2043

1-max-1 commented 1 year ago

I am also experiencing this issue. In my case I am not even using dialogs, but it still occurs.... 😢