RadCheckedDropDownList OnEnter event

1 Answer 83 Views
CheckedDropDownList
Toan
Top achievements
Rank 1
Toan asked on 31 Mar 2022, 08:27 PM
The Enter event of the RadCheckedDropDownList is not firing. I have MessageBox.Show("Hello"); in the body of the event and not shows up.

1 Answer, 1 is accepted

Sort by
0
Dess | Tech Support Engineer, Principal
Telerik team
answered on 01 Apr 2022, 12:22 PM
Hello, Toan,

Note that RadCheckedDropDownList internally contains a RadAutoCompleteBoxElement that handles the mouse input. I have prepared a sample code snippet demonstrating how to handle the MouseEnter event and show a message:
        public RadForm1()
        {
            InitializeComponent();

            this.radCheckedDropDownList1.CheckedDropDownListElement.AutoCompleteEditableAreaElement.AutoCompleteTextBox.MouseEnter+=AutoCompleteTextBox_MouseEnter;
        }

        private void AutoCompleteTextBox_MouseEnter(object sender, EventArgs e)
        {
           RadMessageBox.Show("Hello");
        }

I hope this information helps. If you need any further assistance please don't hesitate to contact me. 

Regards,
Dess | Tech Support Engineer, Principal
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

Tags
CheckedDropDownList
Asked by
Toan
Top achievements
Rank 1
Answers by
Dess | Tech Support Engineer, Principal
Telerik team
Share this question
or