|
Is it possible set a pressed item when you have multiple flyout menus on the page?
Return to Recent Questions
Q:
Is it possible set a menu item to pressed when a page is loaded
when you have multiple flyout menus on the page?
I have 2 menus side by side and I was able to set the pressed
item with the JavaScript API as described in your FAQs but when I
try to show an item as pressed in a second menu on the same page,
the corresponding item in the first menu shows as pressed. Is there
a different function that I can use for this or a way to reset the
menu ID in the second menu to start from where the first menu left
off so I can use the same function?
A:
See the first parameter in
dm_ext_setPressedItem (menuInd, submenuInd, itemInd, recursion)
function is index of the menu.
So, if you use several menus on the one page you should use different
menuInd parameter.
For example you have:
<script type="text/javascript" src="menu/data1.js"></script> //menuInd=0
...
<script type="text/javascript" src="menu/data2.js"></script> //menuInd=1
...
<script type="text/javascript" src="menu/data3.js"></script> //menuInd=2
...
<script type="text/javascript" src="menu/data4.js"></script> //menuInd=3
So, for the second flyout menus you should write:
dm_ext_setPressedItem (1, 2, 5)
Return to Recent Questions
Related:
- March 17, 2009 - Can the java rollover items be set so they are all the same width?
- Apr 01, 2009 - How can I set different parameters for diferent items in my javascript rollover menu?
- May 15, 2009 - We want to set a specific width for each top level item in the context menu javascript
- Jun 28, 2009 - Does your vertical menu allows to keep the pressed menu-item hightlighed?
- Jul 12, 2009 - Is it possible to set target attribute individually for the menu button items?
- Oct 12, 2009 - The script pull down menu opens a new window although I haven't set item's target...
- Oct 13, 2009 - How easy would it be to set up these mouseover menu items?
- Oct 22, 2009 - Is there a way to set a menu item to pressed when a page is reloaded?
- Oct 29, 2009 - How can your down menu javascript be set to open menu items by click?
- Dec 12, 2009 - The drop down css menu opens a new window although I haven't set item's target...
- Dec 24, 2009 - I want to set the exact width for each menu item in drop down menu
|