Click here to Skip to main content
15,903,203 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am using windows combo box Edit of devexpress control and I need to bind list to its datasource.But as I can see there is no method to add datasource to control,so I added each item to control one by one like

foreach (var item in list)
{
comboBoxEdit1.Properties.Items.Add(item);
}
It worked for but it is slow if there is lot of data.Is there a way where I can bind list directly to control.
Posted

You are looping through each item in the list which is not required instead you can try this

{
comboBoxEdit1.DataSource = list;
comboBoxEdit1.DataBind();
}

please try and let me know
 
Share this answer
 
Comments
jaideep06.jd 21-Sep-12 5:46am    
I am using devexpress XtraEditor control and it does not contains method DataSource for ComboBoxEditcontrol.
Try this one


comboBoxEdit1.Properties.Items.AddRange(list);
 
Share this answer
 
Comments
Fabio Rodrigues 20-May-16 11:01am    
It's not work.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900