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

Disabling combo scrolling in RadGridView

1 Answer 57 Views
GridView
This is a migrated thread and some comments may be shown as answers.
James
Top achievements
Rank 1
James asked on 18 Apr 2016, 01:41 PM

Hi,

We have a situation where we have the RadGridView with ComboBoxes in two of its columns. There are two Text columns as well.

If the mouse is kept over a combo box column and the mouse scroll is used, the Grid scroll bar does not fire but the combo box changes selection. However if the mouse is kept above a Text column cell and the mouse scroll is used, the grid scroll bar works as usual. We don't want this disparity. We want the grid scroll bar to work even if the mouse is kept over the radcombobox column cell.

Another challenge is the version of Telerik.Windows.Controls.GridView.dll that we have in our project is 2011.1.0419.35.

I have tried to play with by hooking the OnPreviewMouseWheel event of the RadComboBox that resides in the grid cell. But seems it still makes the combo box scroll.

 

var comboBox = sender as RadComboBox;
            if (comboBox != null)
            {
                if (grid != null)
                {
                    //Copy over event arg members and raise it
                    var newarg = new MouseWheelEventArgs(e.MouseDevice, e.Timestamp, e.Delta)
                    {
                        RoutedEvent = RadGridView.PreviewMouseWheelEvent,
                        Source = sender
                    };
                    e.Handled = true;
                    grid.RaiseEvent(newarg);
                }
            }

Any help will be appreciated.


regards,
J

1 Answer, 1 is accepted

Sort by
0
Accepted
Dilyan Traykov
Telerik team
answered on 20 Apr 2016, 10:38 AM
Hello James,

I have responded to your other forum thread regarding this topic. I kindly ask you to continue any further communication there.

Regards,
Dilyan Traykov
Telerik
Do you need help with upgrading your AJAX, WPF or WinForms project? Check the Telerik API Analyzer and share your thoughts.
Tags
GridView
Asked by
James
Top achievements
Rank 1
Answers by
Dilyan Traykov
Telerik team
Share this question
or