|
|
|
I can't highlight the selected popup menu in java 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 popup menu in java 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 popup menu in java 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 drop down menus javascript example.
- Jun 03, 2009 - Is it possible for the css pop up menus to highlight selected item on the page?
- Jul 24, 2009 - Is there a way to keep global mouse over menu item highlighted?
- Oct 15, 2009 - How I can make the current menus pop up item to be highlighted?
- Oct 25, 2009 - The first item of the menu horizontal stays highlighted when I load my page.
- Oct 28, 2009 - I want to highlight the selected menu item of the drag drop javascript.
- Nov 12, 2009 - How do I highlight main dhtml menu over items when I selected a main category?
- Dec 27, 2009 - I cannot see subitems of my css menu dropdown on the website. Could you help me?
- Jan 25, 2010 - How I can style all click menu javascript items to have font bold when selected?
- Jan 25, 2010 - Can a menus drop down item that expands the submenu items when selected work as link?
- Feb 10, 2010 - When using the vertical menu the third item seems to have a mind of its own..
|