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
20
How to Hide the Webcombo's down arrow image icon
posted

Hi,

How to Hide the Webcombo's down arrow image icon?. When webcombo loads it should be of textbox and when user type in , the down arrow image icon should appear and the values in the drowdown should be displayed. Any help will be appreciated.

Thanks

Sathish.

Parents
  • 7694
    posted

    Hello,

    You can use event onload of body tag and with JS code clear image.
    Please taka look  at the code below:
      <script type="text/javascript">

            function Clear() {

                var image = document.getElementById("Combo1_img");            
                image.src = "";
                
            }
        </script>

    </head>
    <body onload="Clear()">
    Hope this helps.

Reply Children
No Data