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

RadComboBox Mark First Match & Spaces Issue

1 Answer 115 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
Santhosh
Top achievements
Rank 1
Santhosh asked on 17 Apr 2014, 11:51 AM
Hi,


Was wondering if there was something i hadn't implemented properly perhaps.



I've got a radcombobox populated with countries. I have markfirstmatch
set to true, and allowcustomtext set to false, and i want them to chose
an item in the list.



This works fine, however, its not as efficient as perhaps i would like
it to be. For example, United Arab Emirates, United States , and United
Kingdom. I start typing United, but after that it jumps straight to the
first one(united arab emirates) in the list with united, and then won't
allow me to add a space and continue typing. I'd like to be able to type
in the full country if i desire.

Thanks,
Santhosh

1 Answer, 1 is accepted

Sort by
1
Shinu
Top achievements
Rank 2
answered on 19 Apr 2014, 03:13 AM
Hi Santhosh,


Unfortunately I couldn't replicate the issue at my end. Please have a look into the following sample code snippet which works fine at my end.

ASPX:
<telerik:RadComboBox ID="radcboEnterSpace" runat="server" AllowCustomText="false" EmptyMessage="select" MarkFirstMatch="true">
    <Items>
        <telerik:RadComboBoxItem Text="United Arab Emirates" />
        <telerik:RadComboBoxItem Text="United States" />
        <telerik:RadComboBoxItem Text="United Kingdom." />
    </Items>
</telerik:RadComboBox>

Thanks,
Shinu.
Tags
ComboBox
Asked by
Santhosh
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or