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

Issue with combobox in AutoCompleteMode Append

1 Answer 56 Views
ComboBox and ListBox (obsolete as of Q2 2010)
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
wima
Top achievements
Rank 1
wima asked on 13 Apr 2010, 09:50 AM
Hello
I added a RadComboBox to a WinForm with AutoCompleteMode = AutoCompleteMode.Append. In the SelectedIndexChanged Event I have this Code:
Console.WriteLine(radComboBox1.SelectedValue);  
In the Form_Load method I have this:
IList<MyObject> orte = new List<MyObject>();     
orte.Add(new MyObject(1, "aaa"));     
orte.Add(new MyObject(2, "bbb"));     
orte.Add(new MyObject(3, "bbb"));     
 
radComboBox1.DisplayMember = "Ort";     
radComboBox1.ValueMember = "Id";     
radComboBox1.DataSource = orte;   
 
I start the application, then I select the second bbb entry with the mouse. Then I press the tabulator key. The combobox then will select the first bbb (SelectedValue is 2). In AutoCompleteMode None it works fine.
Is there a workaround for this?
Thank you
wima

1 Answer, 1 is accepted

Sort by
0
Victor
Telerik team
answered on 14 Apr 2010, 02:54 PM
Hello wima,

I have replied in your support ticket. Please, respond there, if needed.
 

Sincerely yours,
Victor
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
Tags
ComboBox and ListBox (obsolete as of Q2 2010)
Asked by
wima
Top achievements
Rank 1
Answers by
Victor
Telerik team
Share this question
or