Posted 26 October 2018, 12:27 am EST - Updated 4 October 2022, 2:02 am EST
C1ComboBox key search and show dropdown same ComboBox
Posted by: eploentham on 26 October 2018, 12:27 am EST
-
-
Posted 29 October 2018, 4:29 am EST
Hi
As per my understanding, you are trying to show only possible options in the dropdown list for the entered text in C1ComboBox.
For this, you need to set following properties:c1ComboBox1.AutoCompleteSource = AutoCompleteSource.ListItems; c1ComboBox1.AutoCompleteMode = AutoCompleteMode.Suggest;
Attached is the sample application for your reference.
Prj_DynamicAutoComplete_CB.zipIn case, it does not meet your requirements, please share the steps to be followed with expected behaviour.
Regards,
Meenakshi -
Posted 1 November 2018, 6:05 am EST
thank you