Hello
The DropDown expand when click the arrow, but Is it possible expand the drop down when the text get the focus? like in the asp.net dropdownlist control. Maybe is it possible with javascrip but I don't know how.
I use the net advantage 2010 2.
For your help thanks.
Using the focus client event has some odd side-effects. I find if you take the focus elsewhere, then click on the dropdown arrow, it opens then immediately closes. Subsequent clicks on the dropdown work, but subsequent clicks on the text part don't.
Use the InputMouseDown event instead and it behaves a lot better.
Hello,Yes, it is possible. You can attach to focus client-side event and then call openDropDown function. <script type="text/javascript"> function FocusHandler(sender, eventargs) { sender.openDropDown(); } </script><ig:WebDropDown ID="WebDropDown1" runat="server"> <ClientEvents Focus="FocusHandler" /> </ig:WebDropDown>Regards,Nikolai Dimitrov