Recent Questions
Q: I am evaluating 'Deluxe Tree' and have the following question: Is it possible, and how can I hide a dhtml pop menu branch, that only shows up if user logs in with a certain password. The intent is to only make some menu branches visible to and accessible to 'superuser'. 
A:  Put the special script on each page of site that will open appropriate section.
 (dtreet_ext_expandItem)
See more info here:
http://www.deluxe-tree.com/functions-info.htmlQ: I have started using your menu and when testing in both IE-browsers the CPU jumps to 100% for at least 30 to 60sec. 
 Then the sub menu appears but also not as fast as in Firefox(no effects).
 Now does my menu contains about 1476 item-lines, and I use the cross-frame modus.
 Any ideas? 
A:  It is possible that the loading speed can be lower if the menu is very large. But it doesn't take so much time. 
Yes, you can notice some delay in IE, but in over browsers it works better.
Deluxe Menu works fast, but 1500 is a large value.
I tried to create large menus on my machine: P4 3GHz, 512RAM WinXP SP2 
It takes: 
 - 1000 items ~ 10 sec 
 - 2000 items ~ 40 sec 
You can try to use AJAX-like technology. 
http://deluxe-menu.com/ajax-technology-menu-sample.html
Q: I have a issue involving the location of the files. 
 What is the correct method of referencing the webroot (document root) in the deluxe tuner? 
 I ask because I have some pages that are in a sub folder on the server. 
 eg. index page is http://www.domain.com/index.html 
 but another page might be at 
 http://www.domain.com/somedir/somepage.html 
 And then the references do not work. 
 Currently I am editing the data.js file after saving it in deluxe tuner. 
A:  If you want to use relative paths you should write your links in thefollowing way. 
If you have, for example such file structure: 
     deluxe-menu_files/ 
      dmenu.js 
      data.js 
     images/ 
     html_pages/ 
      page1.html 
      page2.html 
     index.html 
So, you should write write all your paths concerning index.html file. 
For example, you paths will be: 
    ["HOME","html_pages/page1.html", , , , "_self", "-1", , , ], 
    ["ABOUT US","html_pages/page2.html", , , , , , , , ], 
Unfortunately, Deluxe Tuner can't do it automatically. You shouldcorrect your paths manually. 
You can use additional parameters to make menu paths absolute: 
  var pathPrefix_img = "http://domain.com/images/"; 
  var pathPrefix_link = "http://domain.com/pages/"; 
These parameters allow to make images and links paths absolute. 
For example: 
  var pathPrefix_img = "http://domain.com/images/"; 
  var pathPrefix_link = "http://domain.com/pages/"; 
  var menuItems = [ 
    ["text", "index.html", "icon1.gif", "icon2.gif"], 
]; 
So, link path will be look so: 
http://domain.com/pages/index.html 
Images paths will be look so: 
http://domain.com/images/icon1.gif 
http://domain.com/images/icon2.gif 
Please, try to use these parameters.
Q: What I mean is I still want the destination page to be static inthe   var menuitems but when the javascript side menu item is clicked, it'll run a js on the onclick or mouseup event.
Is this possible? 
 something like:
  var menuItems = [
 ["text", "home", "javascript:onclick=your_code_here"]
 ]; 
A:  You can achieve this by using standard html objects within javascript side menu items, for example:
   var menuitems = [
 ["<div onContextMenu='your_code_here'>item text</div>", ""]
 ];
Actually you can use any html code within menuItems.