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

Erorr DropDownList autocomplete

2 Answers 112 Views
DropDownList
This is a migrated thread and some comments may be shown as answers.
Abbas
Top achievements
Rank 1
Abbas asked on 29 Apr 2018, 09:49 AM

Hi

Please look at the photo and describe the problem to me

https://image.ibb.co/daZf6x/At.jpg

Code:

private void AtouAutoCompleteNameDrive()
        {
            AutoCompleteStringCollection AutoComplete = new AutoCompleteStringCollection();
            SqlDataReader SR = new Factors_C().ListNameDrive();
            if (SR.Read())
            {
                while (SR.Read())
                    AutoComplete.Add(SR["NameDrive"].ToString());
            }
            ComBoBoxNameDr.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
            ComBoBoxNameDr.AutoCompleteSource = AutoCompleteSource.CustomSource;
            ComBoBoxNameDr.AutoCompleteCustomSource = AutoComplete;
        }

2 Answers, 1 is accepted

Sort by
0
Abbas
Top achievements
Rank 1
answered on 01 May 2018, 08:09 PM
?
0
Dess | Tech Support Engineer, Principal
Telerik team
answered on 02 May 2018, 06:17 AM
Hello, Abbas,     

RadDropDownList doesn't have AutoCompleteSource property. Please refer to the following help article demonstrating how to enable and use the autocomplete functionality in RadDropDownList: https://docs.telerik.com/devtools/winforms/dropdown-listcontrol-and-checkeddropdownlist/dropdownlist/features/auto-complete

I would like to note that most of the forum threads are reviewed by Telerik representatives and sometimes we address the questions asked by our customers in the forums as well. However, a post in the forum doesn't guarantee you a response from the Telerik support team. Moreover, threads are handled according to license and time of posting, so if it is an urgent problem, we suggest you use a support ticket, which would be handled before a forum thread.

I hope this information helps. 

Regards,
Dess
Progress Telerik
Try our brand new, jQuery-free Angular components built from ground-up which deliver the business app essential building blocks - a grid component, data visualization (charts) and form elements.
Tags
DropDownList
Asked by
Abbas
Top achievements
Rank 1
Answers by
Abbas
Top achievements
Rank 1
Dess | Tech Support Engineer, Principal
Telerik team
Share this question
or