This is a migrated thread and some comments may be shown as answers.

Scrolling drop-down content in RadGridView is not handled

2 Answers 61 Views
MultiColumnComboBox
This is a migrated thread and some comments may be shown as answers.
Huan jia
Top achievements
Rank 1
Iron
Huan jia asked on 20 Jun 2020, 06:51 AM

 

It do scrolls the drop-down content, but after scrolling to the bottom position it will scroll the parent RadGridView for more mouse scrolling down.

How do i scroll the multiCombobox without affecting the parent scrollbar.

2 Answers, 1 is accepted

Sort by
0
Accepted
Dinko | Tech Support Engineer
Telerik team
answered on 24 Jun 2020, 12:04 PM

Hi Huan jia Zhou,

This behavior comes from the fact that the scroll is bubbling to the parent ScrollViewer. You can workaround this by manually handle the MouseWheel event of the RadGridView.

private void RadGridView_MouseWheel(object sender, MouseWheelEventArgs e)
{
    e.Handled = true;
}

Regards,
Dinko
Progress Telerik

Progress is here for your business, like always. Read more about the measures we are taking to ensure business continuity and help fight the COVID-19 pandemic.
Our thoughts here at Progress are with those affected by the outbreak.
0
Huan jia
Top achievements
Rank 1
Iron
answered on 02 Jul 2020, 06:26 AM
Solved!  The MouseWheel event is not the parent RadGridView's but RadMultiColumnComboBox's
Tags
MultiColumnComboBox
Asked by
Huan jia
Top achievements
Rank 1
Iron
Answers by
Dinko | Tech Support Engineer
Telerik team
Huan jia
Top achievements
Rank 1
Iron
Share this question
or