Hi,
We are upgrading one of our apps from version 4 to version 5, and we are struggling with the behavior of the DropDown box when having the filtering enabled and using a mobile device. The DropDown box is towards the bottom of the screen.
With Radzen version 4.20.1 everything works fine, you can select the DropDown box, the keyboard on the mobile device shows up over the DropDown box, but the DropDown box is scrolled towards the top of the screen to remain visible, and the focus is on the text box that is used to perform the filtering. Everything works wonderfully!
But when we use Radzen version 5.7.8, when the user selects the DropDown box, the keyboard on the mobile device shows up momentarily and also the search popup, but they both disappear right away. The keyboard is just momentarily displayed for a few milliseconds.
This is the code for the DropDown, it has nothing special:
<RadzenDropDown Name="Host" FilterCaseSensitivity="FilterCaseSensitivity.CaseInsensitive" FilterOperator="StringFilterOperator.Contains" AllowFiltering="true"
Data=@ApplicationUsers TextProperty="FullName" ValueProperty="Id" AllowClear="true" @bind-Value=VisitRecord.HostUserID>
</RadzenDropDown>
These are the screenshots when using version 4.20.1, the keyboard stays visible. But with the latest version the keyboard never stays visible, and the user cannot perform a search. We think the problem is related to how the focus is given to the textbox inside the DropDown box, but we haven't been able to pin point the actual problem.
For now we are disabling the filtering, but sometimes the users have to do a lot of scrolling.
Thanks in advance for your help!

