Completed
Last Updated: 13 Feb 2018 09:19 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 23 Jan 2018 14:04
Category:
Type: Bug Report
1
FIX. RadDropDownList - TextChanged event is not fired when the user types in the editable part
To reproduce: use the following code snippet and follow the steps from the attached gif file. You will notice that the TextChanged event is not always fired.

        public RadForm1()
        {
            InitializeComponent();
            
            radDropDownList1.AutoCompleteDataSource = new string[] { "first", "second", "third", "fourth" };
            radDropDownList1.AutoCompleteMode = AutoCompleteMode.Suggest;

            radDropDownList1.TextChanged += radDropDownList1_TextChanged;
        }

        private void radDropDownList1_TextChanged(object sender, EventArgs e)
        {
            Console.WriteLine(this.radDropDownList1.Text);
        }

Workaround: handle the DropDownListElement.TextBox.TextBoxItem.TextBoxControl.TextChanged event
Attached Files:
0 comments