Hello!
I have a problem with RadMultiColumnCombobox.
I'm using Telerik Control Q2 2011 and VS 2010.
I have a form like the below code:
Form f1 = new Form();
RadDock rd1 = new RadDock();
rd1.Dock = DockStyle.Fill;
DocumentWindow dw1 = new DocumentWindow();
rd1.AddDocument(dw1);
DocumentWindow dw2 = new DocumentWindow();
rd1.AddDocument(dw2);
RadMultiColumnComboBox cbx1 = new RadMultiColumnComboBox();
dw1.Controls.Add(cbx1);
cbx1.DataSource = GetAllCountries(); (I get list items in the database)
f1.Controls.Add(rd1);
f1.Show();
When I select one item in cbx1 and do a drag-drop action in dw1, cbx1 will always automatically select the first item.
If anyone has a suggestion, please let me know.
Thanks!
I have a problem with RadMultiColumnCombobox.
I'm using Telerik Control Q2 2011 and VS 2010.
I have a form like the below code:
Form f1 = new Form();
RadDock rd1 = new RadDock();
rd1.Dock = DockStyle.Fill;
DocumentWindow dw1 = new DocumentWindow();
rd1.AddDocument(dw1);
DocumentWindow dw2 = new DocumentWindow();
rd1.AddDocument(dw2);
RadMultiColumnComboBox cbx1 = new RadMultiColumnComboBox();
dw1.Controls.Add(cbx1);
cbx1.DataSource = GetAllCountries(); (I get list items in the database)
f1.Controls.Add(rd1);
f1.Show();
When I select one item in cbx1 and do a drag-drop action in dw1, cbx1 will always automatically select the first item.
If anyone has a suggestion, please let me know.
Thanks!