Recent Questions
Q: I was wondering if there is a way to disable links in the dhtml context menu on a page.
 
A: To disable your menu items you should set the following parameter to disable all items:
  var itemTarget="_";
Or you can disable items individually.
 ["Home","testlink.html", "", "", "", "_", "", "", "", "", "", ], //disabled
 ["Product Info","", "", "", "", "", "", "", "", "", "", ],
  ["|Features","testlink.html", "", "", "", "_", "", "", "", "", "", ], //disabled
  ["|Installation","", "", "", "", "", "", "", "", "", "", ],
You can also use function dm_ext_changeItem (menuInd, submenuInd, itemInd, iParams)
function to disable items on-the-fly, for example:
dm_ext_changeItem (0, 2, 3, ["", "", "", "", "", "_", "", "", ""]);
Q: I have not seen anything that can help me in the question list and
I would like to ask how to have a php tree view closed by default. 
A: You should delete "+" signs in the top items and set the followingparameter:
  var texpanded=0;
Q: Is there a way to create a vertical menu in which the sub menus "fly out" to the left of the main menu?
 
A:  Yes, it is possible. 
To create vertical menu you should set 
 
  var isHorizontal=0; 
 
Why of showing submenu you can set so: 
  var smViewType=2;
Q: I would like to create my own jpeg images and use them as the mouseover-items in the top level cascading menu. I am not talking about the backround. I mean the actual upfront button. I seem to be locked into the size which is the default and would like to change it to width = 180px and height = 45px for each item in the menu. Is there any way to do that?
A: You should create Individual Style and assign it for all top items.
  var itemStyles = [
 ["itemWidth=180px"],
];
  var menuItems = [
 ["Home","testlink.html", "", "", "", "", "0", "", "", ],
 ["Product Info","", "deluxe-menu.files/icon1.gif", "deluxe-menu.files/icon1o.gif", "", "", "0", "", "", ],