radzen-blazor
radzen-blazor copied to clipboard
[Issue] RadzenDialog/RadzenDropDown
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:
scrolling down:
If you need further informations, let me know. I am grateful for any help. Thanks!
This looks similiar: https://forum.radzen.com/t/dropdown-selection-list-not-anchored-when-scrolling/2043
I am also experiencing this issue. In my case I am not even using dialogs, but it still occurs.... 😢