This question is locked. New answers and comments are not allowed.
Hello,
Consider a page with the following Combobox inside.
when 'markfirstmatch' is set to 'true' and I try to select the value '9' using the keypad,
It ignores my selection the first time..if I try again, it does select the correct item.
It works fine with any other number from the keypad,
it works fine with '9' from the numbers row,
and it also works fine when 'markfirstmatch' is set to 'false'.
What am I doing wrong?
<telerik:RadComboBox markfirstmatch="true" runat="server" id="CB_FOO" allowcustomtext="false"> <Items> <telerik:RadComboBoxItem Value="-10" Text="-10" /> <telerik:RadComboBoxItem Value="-9" Text="-9" /> <telerik:RadComboBoxItem Value="-8" Text="-8" /> <telerik:RadComboBoxItem Value="-7" Text="-7" /> <telerik:RadComboBoxItem Value="-6" Text="-6" /> <telerik:RadComboBoxItem Value="-5" Text="-5" /> <telerik:RadComboBoxItem Value="-4" Text="-4" /> <telerik:RadComboBoxItem Value="-3" Text="-3" /> <telerik:RadComboBoxItem Value="-2" Text="-2" /> <telerik:RadComboBoxItem Value="-1" Text="-1" /> <telerik:RadComboBoxItem Value="0" Text="0" /> <telerik:RadComboBoxItem Value="1" Text="1" /> <telerik:RadComboBoxItem Value="2" Text="2" /> <telerik:RadComboBoxItem Value="3" Text="3" /> <telerik:RadComboBoxItem Value="4" Text="4" /> <telerik:RadComboBoxItem Value="5" Text="5" /> <telerik:RadComboBoxItem Value="6" Text="6" /> <telerik:RadComboBoxItem Value="7" Text="7" /> <telerik:RadComboBoxItem Value="8" Text="8" /> <telerik:RadComboBoxItem Value="9" Text="9" /> <telerik:RadComboBoxItem Value="10" Text="10" /> </Items> </telerik:RadComboBox>
