Recent Questions Hierarchical Tree Menu From Database Table
Q: I replaced the code you suggested and I downloaded the current version of Deluxe-Tuner. I also removed the Javascript roll-overs I had elsewhere on the page and created the text.
I still get 'Error on page' when I hover over the first java scrolling menu item.
Please help! I need to buid this site out by Monday.
A: Now you have several errors in your data file:
var menuBackColor="f9f9ec";
You should write:
var menuBackColor="#f9f9ec";
The following parameters cannot be empty:
var menuBorderWidth="0";
var itemBorderWidth="0";
It is not correct to write the java scrolling menu parameter in the following way:
var itemBorderStyle=["1px","1px"];
You should write:
var itemBorderStyle=["none","none"];
If you want to add borders in the subitems you should write:
var itemBorderWidth="1";
var itemBorderColor=["#c59d1f","#c59d1f"];
var itemBorderStyle=["solid","solid"];
And to remove border from the top items you should create Individualstyle and assign it to the top items:
var itemStyles = [
["itemBorderWidth=0","itemBorderStyle=none,none"],
];
["","", "/images/nav_OFF_01.gif", "/images/nav_ON_01.gif", "", "","0", "", "", "", "", ], //assign style 0
["","", "/images/nav_OFF_02.gif", "/images/nav_ON_02.gif", "", "", "0", "", "", "", "", ], //assign style 0
...
Q: Why do I get the "Incorrect Copyright" message in Internet Explorer 7. I am using JavaScript Tree Menu version 1.14. Shouldn't this support IE5+, including IE7?
This is what I found in you FAQ about this matter:
http://deluxe-menu.com/rq-css-pull-down-menu-copyright-support.html
Do I really need to buy an upgrade for each new browser release when I don't need any of the new features in JavaScript Tree Menu???
A: Thanks for your interest in our products.
JavaScript Tree Menu v1.14 works with "Incorrect Copyright" message in IE7. Youshould upgrade to JavaScript Tree Menu v2.0.
The upgrade is free for existing customers.
You can download licensed package from the same link in your licensemessage.
Q: Can your javascript menu examples be used when developing and deploying and running a site using Tomcat-Apache and JSP's? Apache's will be the web server.
Do you provide set up instructions for Apache web server?
A: JavaScript Tree Menu is Javascript product. It means that it is executed on a client side, not on a server side.So, whatever server you'll use, your menu will work fine.Q: Is it possibly that menu dynamic remembers the last action if I go to previous page?(so the menu stays fault out)
I know TreeMenu does this, but I want to use DeLuxeMenu
A: JavaScript Tree Menu doesn't save state as Javascript/DHTML Tree.
But you can set pressed item on each page with JavaScript Tree Menu using
dm_ext_setPressedItem () funtion.
Find more info:
http://deluxe-menu.com/highlighted-items-sample.html