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.
Evan,
This technique seems to be not working for 2010 volume 2 web dropdown. Can you suggest some alternative for this?
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.