Hi,
I have a horizontal splitter control with two panes, one on the top and the other at the bottom. I also have a radcombobox located on the top pane of the splitter. The problem is when the pane overflows and a scrollbar appears, when I use the mouse wheel of my mouse, the combobox moves along the scroll bar. However, when I don't have a splitter control and I use my mouse wheel, this behavior doesn't appear. I have below the markup of my page just to show the issue.
Thanks,
Ryan
I have a horizontal splitter control with two panes, one on the top and the other at the bottom. I also have a radcombobox located on the top pane of the splitter. The problem is when the pane overflows and a scrollbar appears, when I use the mouse wheel of my mouse, the combobox moves along the scroll bar. However, when I don't have a splitter control and I use my mouse wheel, this behavior doesn't appear. I have below the markup of my page just to show the issue.
| <telerik:RadSplitter ID="SummarySplitter" runat="server" |
| Orientation="Horizontal" VisibleDuringInit="false" BorderStyle="Dotted" |
| Width="1016px" Height="205px"> |
| <telerik:RadPane ID="TopPane" runat="server" Scrolling="Both" Width="770px" |
| Height="69px" > |
| <div style="height: 194px"> |
| <telerik:RadComboBox ID="RadIR" runat="server" NoWrap="True" > |
| <Items> |
| <telerik:RadComboBoxItem Text="1" /> |
| </Items> |
| </telerik:RadComboBox> |
| </div> |
| </telerik:RadPane> |
| <telerik:RadSplitBar ID="HorizontalSplitBar" runat="server" CollapseMode="Forward" /> |
| <telerik:RadPane ID="BottomPane" runat="server" Scrolling="Both" Height="350px" Width="768px" > |
| </telerik:RadPane> |
| </telerik:RadSplitter> |
Thanks,
Ryan