|
|
How to make the cascading menu to be reversed color�state?
Return to Recent Questions
Q:
I have made a horizontal menu that have different colors for
different pages. What I'm not figuring out is out to make the
current page be the�reversed color�state? This page should actually
have the "images" highlighted. I'm using the Deluxe Tuner plus
deluxe-menu+deluxe-tree+deluxe-tabs-trial.exe.
A:
Please, check the following parameter
var pressedItem=-2;
This parameter sets an index of an item that will be highlighted by default.
-2 - the toggle mode is disabled;
-1 - the toggle mode is enabled, but no items highlighted by default;
0,1,2,3,... - index of highlighted item in a top-menu.
The menu has only two states normal and mouseover. We'll try to add the pressed state in the future.
You can set a pressed item using Javascript API:
function dm_ext_setPressedItem (menuInd, submenuInd, itemInd, recursion)
Sets a current pressed item.
menuInd - index of a menu on a page, >= 0.
submenuInd - index of a submenu, >= 0.
itemInd - index of an item, >=0.
recursion = true/false - highlight parent items.
But notice, to use dm_ext_setPressedItem() you should know ID of selected item and subitem.
You can't get this ID after you reload your page. That is why you should write your own code on PHP.
You can also set the correct
var pressedItem=1;
parameter on each html page.
Return to Recent Questions
Related:
- Oct 27, 2006 - I'm trying to get a cascading menu that will float as I scroll down the page.
- May 27, 2007 - Why would the cascading javascript menu be totally blank ...not even warnings.
- May 28, 2007 - How I can add border onle for the top items in the cascading dhtml menu?
- July 27, 2007 - I am having problems with the javascript cascading menu and DOCTYPE.
- Sep 04, 2007 - Java cascading menu is simply not saving the state.
- Sep 11, 2007 - My site no longer validates with cascading menu javascript
- Sep 13, 2007 - I want to use different background color for main items and submenus for cascading menus
- Sep 20, 2007 - The css cascading menu maps to the width size of the longest menu item on the list
- Dec 26, 2007 - Where I should add this search engine code for cascading dhtml menu?
- Jan 23, 2009 - The cascading javascript menu does not spans frames or windows like Applets. Is that correct?
- Mar 19, 2009 - Is there any way to make the java cascading menu not be blocked by Microsoft Explorer?
|