Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
280
Ability to click entire dropdown instead on arrow mark at right side.
posted

Hi i am using ig:WebDropDown,

the webdropdown is droping down only on clicking on arrow mark on right side of the webdropdown.

I want to be able to click on entire webdropdown for droping down.

 

Please provide me the solution for this as soon as possible.

Parents
No Data
Reply
  • 695
    posted

    Hello,

    you can do that by attaching to InpuMouseDown client side event and than call openDropDown. Here is an example:

        function MouseDown(dropDown, eventArgs) {
            dropDown.openDropDown();
        }

    Regards,
    Nikolai Dimitrov

Children