How to open the webcombo automally

1 reply. Last post: September 30, 2013 3:23 AM by Hans Kristian
Tags :
  • (None)
armore1972Member

Hi to all,

i have a page with a webcombo that was opened when you click on the mouse on it.

I need that this combo was opened without click but when i enter in the page.

Is it possibile or i need to simulate the click of the mouse?

Thanks in advance

armore1972

All Replies

Hello,

Thank you for the question.

Perhaps you could call ShowDropDown() method in window.onload javascript event.
Here’s the example snippet code how-to implement ShowDropDown() method:
<script type="text/javascript" language="javascript">    window.onload = function () {
        var WebCombo1 = ISGetObject("WebCombo1");
        WebCombo1.ShowDropDown(true);
    }
</script>

Hope this helps. Thank you.

Regards,
Hans.

All times are GMT -5. The time now is 6:11 AM.
Previous Next