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

MultiColumnComboBox SelectIndex problem

1 Answer 106 Views
MultiColumn ComboBox
This is a migrated thread and some comments may be shown as answers.
Zoran
Top achievements
Rank 1
Zoran asked on 01 Mar 2010, 01:04 PM
Hi

I am using version 2009.3 1203 of the WinForms Rad controls and when setting the SelectedIndex property of the MultiColumnComboBox control (after is data bound) to -1, I was expecting the combobox selected item to be empty...but it is not, the first one is shown always.

Here is my code:

 

 

            var results = from company in Collections.CompaniesList  
                          select new  
                          {  
                              company.Name,  
                              company.City,  
                              company.TaxNumber  
                          };  
            cbCompanies.DisplayMember = "Name";  
            cbCompanies.ValueMember = "ID";  
            cbCompanies.DataSource = results.ToList();  
 
            cbCompanies.SelectedIndex = -1; 

Any clues why this is happening?

 

 

1 Answer, 1 is accepted

Sort by
0
Accepted
Deyan
Telerik team
answered on 03 Mar 2010, 07:53 AM
Hello Zoran,

Thanks for writing. This issue is known and a fix for it will be available in Q1 2010. You can write back anytime you need further assistance or have questions.

Greetings,
Deyan
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
MultiColumn ComboBox
Asked by
Zoran
Top achievements
Rank 1
Answers by
Deyan
Telerik team
Share this question
or