Recent Questions
Q: Sub menu is opened on mouseover only.But our requirement is that submenu for horizontal menu should be open onclick of mouse event. Could you please suggest us if we are missing something?
A: Try to use the following parameters:
  var showByClick=1;Q: Is there a way to center floatable menus horizontally on a page? 
 I used to use absolutePos=0, and all of my menus were centered ok, but when I tried floatable=1 I found that I had to change toabsolutePos=1 to get the menu to float, and this messed up my centering. Since I have multiple menus of different widths, I'd rather not have to hard-code the menu width, but please let me know if there's a better way.
 
A: Notice, when you use floatable menu you can't use relative menu position. 
So, if you use 
  var absolutePos = 0; 
and to center the menu you use <p> or <div> with the center alignment your menu won't float. 
To center your floatable menu you should set absolute coordinates. 
Q: There is the possibility in the menu that an item has access control, that is is visible or not depending of the user?
 
A:  You can use Javascript API and write your own code. 
See more info here: 
http://deluxe-menu.com/functions-info.html 
You can use 
dm_ext_changeItem (menuInd, submenuInd, itemInd, iParams) 
to disable your items or 
dm_ext_changeItemVisibility (menuInd, submenuInd, itemInd, visibility)
to hide your items.
Q: My problem is that the easy dropdown menu, as opposed to being in a fixed position 
 as stated in the .js file floats up and down with the page..How do I fix this..
 
A: You should set the following parameter to disable the floating feature:
  var floatable=0;