Unplanned
Last Updated: 12 Mar 2026 12:37 by ADMIN
Tony
Created on: 12 Mar 2026 12:32
Category: ComboBox
Type: Bug Report
0
ComboBox: [iOS] [MacCatalyst] [WinUI] The dropdown stays at the same position on scroll when the control is nested inside a ScrollView
If the ComboBox (or AutoComplete) is placed inside a ScrollView, scrolling through the page, the dropdown keeps the same position with the scroll and away from the combo (autocomplete).
1 comment
ADMIN
Didi
Posted on: 12 Mar 2026 12:37

Workaround:

subscribe to the ScrollView.Scrolled event and close the drop down:

<ScrollView Scrolled="ScrollView_Scrolled">
private void ScrollView_Scrolled(object sender, ScrolledEventArgs e) { this.ComboBox.IsDropDownOpen = false; }

 

Regards,
Didi
Progress Telerik