Hi and thanks for the reply,
We found a workaround to disable the behavior, in case someone else is annoyed by it.
XAML:
<syncfusion:ComboBoxAdv.ItemContainerStyle>
<Style TargetType="syncfusion:ComboBoxItemAdv">
<EventSetter Event="RequestBringIntoView" Handler="ComboBox_RequestBringIntoView"/>
</Style>
</syncfusion:ComboBoxAdv.ItemContainerStyle>
CS:
private void ComboBox_RequestBringIntoView(object sender, RequestBringIntoViewEventArgs e)
{
e.Handled = true;
}
Regards,
Marcus