Hi,
I have a simple combo box with a number of options (see sample code below). When I expand it (vertical scrollbar appears) and scroll the options via keyboard 'up' and 'down' buttons I need combo to scroll automatically when the selection gets beyond the visible area (i.e. the currently selected item must always be visible to the user).
I had this desired behaviour with previous versions, but Q2 2012 RadCombobox does not perform automatic scrolls and behaves as it is displayed at the attached screenshot. Is there a solution for that?
Thanks in advance,
Alexey
I have a simple combo box with a number of options (see sample code below). When I expand it (vertical scrollbar appears) and scroll the options via keyboard 'up' and 'down' buttons I need combo to scroll automatically when the selection gets beyond the visible area (i.e. the currently selected item must always be visible to the user).
I had this desired behaviour with previous versions, but Q2 2012 RadCombobox does not perform automatic scrolls and behaves as it is displayed at the attached screenshot. Is there a solution for that?
Thanks in advance,
Alexey
<telerik:RadComboBox id="Combo1" runat="server" MaxHeight="50">
<Items>
<telerik:RadComboBoxItem Value="0" Text="Item0" />
<telerik:RadComboBoxItem Value="1" Text="Item1" />
<telerik:RadComboBoxItem Value="2" Text="Item2" />
<telerik:RadComboBoxItem Value="3" Text="Item3" />
<telerik:RadComboBoxItem Value="4" Text="Item4" />
<telerik:RadComboBoxItem Value="5" Text="Item5" />
</Items>
</telerik:RadComboBox>
<Items>
<telerik:RadComboBoxItem Value="0" Text="Item0" />
<telerik:RadComboBoxItem Value="1" Text="Item1" />
<telerik:RadComboBoxItem Value="2" Text="Item2" />
<telerik:RadComboBoxItem Value="3" Text="Item3" />
<telerik:RadComboBoxItem Value="4" Text="Item4" />
<telerik:RadComboBoxItem Value="5" Text="Item5" />
</Items>
</telerik:RadComboBox>