|
|
|
I can't highlight the selected java drop down menus item of the current page.
Return to Recent Questions
Q:
I downloaded the trial version, so I'm doing some testing....
I can't highlight the selected java drop down menus item of the
current page. The var ttoggleMode is enabled and
tpressedFontColor = "#AA0000";
This is caused by the trial version?
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, bu t no items highlighted by default;
0,1,2,3,... - index of highlighted item in a top-menu.
The java drop down menus has only two states normal and mouseover.
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:
- Apr 11, 2009 - I cannot see the shadow on the top items in my menu cascading example.
- Jun 03, 2009 - Is it possible for the down css menu to highlight selected item on the page?
- Jul 24, 2009 - Is there a way to keep global css menu bar item highlighted?
- Oct 15, 2009 - How I can make the current vertical flyout menu item to be highlighted?
- Oct 25, 2009 - The first item of the dropdown menu html stays highlighted when I load my page.
- Oct 28, 2009 - I want to highlight the selected menu item of the javascript menu dhtml.
- Nov 12, 2009 - How do I highlight main javascript sliding menu items when I selected a main category?
- Dec 27, 2009 - I cannot see subitems of my over drop down menu on the website. Could you help me?
- Jan 25, 2010 - How I can style all javascript pulldown menu items to have font bold when selected?
- Jan 25, 2010 - Can a pop up menu creator item that expands the submenu items when selected work as link?
- Feb 10, 2010 - When using the menu dhtml the third item seems to have a mind of its own..
|