﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - WebDesktop - WebMenuBar as Graphical Website Menu, can MenuCommand open onMouseOver?</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/WebMenuBar-as-Graphical-Website-Menu-can-MenuCommand-open-onMouseOver/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>WebMenuBar as Graphical Website Menu, can MenuCommand open onMouseOver?</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/WebMenuBar-as-Graphical-Website-Menu-can-MenuCommand-open-onMouseOver/</link><pubDate>Wed, 13 Jan 2010 16:38:22 GMT</pubDate><dc:creator>sfrench@sierradata.com</dc:creator><description>&lt;p&gt;Thanks, Glenn. That did the trick. I did modify it slightly for our scenario where some MenuCommands may have children and some may be a direct link. We want the MenuCommands with a link to actually be clicked and not trigger on mouseover.&lt;/p&gt;&lt;pre&gt;                if (menuBar.Menus[i].TargetURL == null) {
                    Listener.Add(menuBar.Menus[i]._HtmlObj, "onmouseover", showMenuCommand, menuBar.Menus[i]);
                }&lt;/pre&gt;
</description></item><item><title>WebMenuBar as Graphical Website Menu, can MenuCommand open onMouseOver?</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/WebMenuBar-as-Graphical-Website-Menu-can-MenuCommand-open-onMouseOver/</link><pubDate>Wed, 13 Jan 2010 05:10:16 GMT</pubDate><dc:creator>Glayaar</dc:creator><description>&lt;p&gt;Unfortunately, the latest version of WebMenuBar MenuCommand default behavior must be clicked in order to open up. A workaround, by simulating the onClick event during mouse over can be achieved using this snippet:&lt;br /&gt;&lt;/p&gt;&lt;pre&gt;var id = "";&lt;br /&gt;    &lt;br /&gt;function init()&lt;br /&gt;{&lt;br /&gt;    setTimeout(function()&lt;br /&gt;    {&lt;br /&gt;        var menuBar = ISGetObject("WebMenuBar1");&lt;br /&gt;&lt;br /&gt;        for (var i = 0; i &amp;lt; menuBar.Menus.length; i&amp;#43;&amp;#43;)&lt;br /&gt;        {&lt;br /&gt;            Listener.Add(menuBar.Menus[i]._HtmlObj, "onmouseover", showMenuCommand, menuBar.Menus[i]);&lt;br /&gt;        }&lt;br /&gt;    }, 500);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;function showMenuCommand()&lt;br /&gt;{&lt;br /&gt;    if (id != this.Name)&lt;br /&gt;    {&lt;br /&gt;        id = this.Name;&lt;br /&gt;        this.OnClick();&lt;br /&gt;    }&lt;br /&gt;}&lt;/pre&gt;&lt;p&gt;The Init() function should be invoked during window onload client side event.&lt;br /&gt;&lt;/p&gt;</description></item><item><title>WebMenuBar as Graphical Website Menu, can MenuCommand open onMouseOver?</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/WebMenuBar-as-Graphical-Website-Menu-can-MenuCommand-open-onMouseOver/</link><pubDate>Tue, 12 Jan 2010 13:56:56 GMT</pubDate><dc:creator>sfrench@sierradata.com</dc:creator><description>&lt;p&gt;Hello,&lt;br /&gt;&lt;br /&gt;We have implemented the WebMenuBar along with a WebTab to work as a graphical navigation for our application. Everything so far is working great and the implementation was pretty quick and easy. The only thing left that I have not figured out how to do is have the MenuCommand activate onMouseOver instead of onClick. Currently you click a main heading (this is a WebTab) inside each tab is a WebMenuBar that has been dynamically created using database objects. In our previous system this next level would be accessed by mousing over the text. Using the WebMenuBar you have to actually click the MenuCommand in order to drop down the list of child menu objects (WebMenuItems). Since there is already a click at the WebTab level we would like to avoid any more clicks until the page being navigated to is chosen. Is there a way to alter the MenuCommand settings so they will open up on a mouse over instead of the standard mouse click?&lt;br /&gt;&lt;br /&gt;Thanks in advance for any feedback or direction!&lt;br /&gt;Scott French&lt;/p&gt;</description></item></channel></rss>