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.
01.
private
void
CboPreference_OnPreviewMouseWheel(
object
sender, MouseWheelEventArgs e)
02.
{
03.
var comboBox = sender
as
RadComboBox;
04.
if
(comboBox !=
null
)
05.
{
06.
if
(grdTraderPreferences !=
null
)
07.
{
08.
//Copy over event arg members and raise it
09.
var newarg =
new
MouseWheelEventArgs(e.MouseDevice, e.Timestamp, e.Delta)
10.
{
11.
RoutedEvent = RadGridView.PreviewMouseWheelEvent,
12.
Source = sender
13.
};
15.
grdTraderPreferences.RaiseEvent(newarg);
16.
}
17.
}
18.
}
Any help will be appreciated.
regards,
J