4 Answers, 1 is accepted
0
                                Accepted
Hi Helen,
Thank you for writing.
You can do that by capturing the GotFocus event and in it call the control's ShowDropDown menu:
I hope that you find this information useful. Should you have any other questions, do not hesitate to contact us.
Regards,
Stefan
Telerik 
 
                                        Thank you for writing.
You can do that by capturing the GotFocus event and in it call the control's ShowDropDown menu:
void radDropDownList1_GotFocus(object sender, EventArgs e){    radDropDownList1.ShowDropDown();}I hope that you find this information useful. Should you have any other questions, do not hesitate to contact us.
Regards,
Stefan
Telerik
Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.
0
                                
                                                    Helen
                                                    
                                            
    Top achievements
    
            
                 Rank 2
                Rank 2
            
    
                                                
                                                answered on 11 Feb 2015, 03:16 PM
                                            
                                        Perfect! Just what I need!
                                        0
                                
                                                    Helen
                                                    
                                            
    Top achievements
    
            
                 Rank 2
                Rank 2
            
    
                                                
                                                answered on 11 Feb 2015, 03:25 PM
                                            
                                        Um ... I'm not seeing a GotFocus event in the properties window?
                                        0
                                Hi Helen,
GotFocus comes from the Control class and it is defined as Browsable(false), hence this event is not visible in the events list. You can subscribe to it with code:
I hope this helps.
Regards,
Stefan
Telerik 
 
                                        GotFocus comes from the Control class and it is defined as Browsable(false), hence this event is not visible in the events list. You can subscribe to it with code:
radDropDownList1.GotFocus+=radDropDownList1_GotFocus;I hope this helps.
Regards,
Stefan
Telerik
Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.
