Posted 23 July 2019, 7:09 am EST
In our windows application, we have a C1Combobox control with the below properties set.
AutoCompleteMode=Suggest
AutoCompleteSource=ListItems
AutoSuggestMode=C1.Win.C1Input.AutoSuggestMode.Contains
This combo is used to search the list items from middle of the string, and it’s working fine. But the problem is, it’s taking too much time to bind the items. Even for just 1000 items, it take around 6 seconds to load the items from data base. For binding the data source we use the below code:
ItemsDataSource = datatable
ItemsDisplayMember = “”
ItemsValueMember=“”
UseItemsBindingSource = True