Javascript Tree List On An Array by Deluxe-Tree.com
Javascript Tree List On An Array


Buy Now!  Free Trial Download

Menu Screenshots Javascript Tree List On An Array

Javascript Tree List On An Array Tree Dropdown With Submenu

Features Javascript Tree List On An Array

Professional Look-n-feel
  • Entirely customizable look-n-feel
  • A lot of pre-designed javascript tree list on an array samples
  • Hundreds of visual effects
  • Custom CSS styles can be applied for all menu settings
Unrivalled Features
  • Scrollable, dragable, floating
  • Unique Java Script API for altering menu "on-the-fly", without page reloading
  • AJAX technology - loads menu data from the server "on-fly and on-demand".
Tree Menu Tool Javascript Tree List On An Array
Cost Effective
Compatibility              
  • Full cross-browser compatibility including IE, Netscape, Mozilla, Opera, Firefox, Konqueror and Safari on Windows, Mac OS and Linux
  • Menu can be populated from a database using ASP, PHP, etc.
  • Search engine friendly
  • Support for any doctypes
  • Fits for secure sites
Seamless Integration
  • Visible over flash, select boxes, iframes, java applets
  • Multiple menus on the same page
  • Amicable to other scripts and css styles
  • Any HTML code can be used inside menu items
Buy Now!  Free Trial Download

Javascript Tree Menu. Expandable Menu.

  • You can create any style for XP menu:
  • different icons, colors, and buttons for each submenu title;
  • any color for borders, backgrounds, and font of menus and items;
  • any available font style; and many other options!
  • Design personal styles for any submenu and item. Use individual styles to rich killer visual effects!
  • These effects will make your menu neat and chic. Among available special visual effects there are random dissolve, fade, mix, mosaic slide out and many many others.

Recent Questions Javascript Tree List On An Array

Q: I am trying to update a website using a deluxe-menu, but I do not understand the instructions for inserting it into a framed site. I have everything working, and the menu is on the page. I just cannot figure out how to make the submenus appear in another frame.

The website makes it sound like I need to alter the data.js file, but I do not have any programs on my computer that will allow me to do so.


A: You can open your data.js file in any text editor and add such linedm_initFrame("frmSet", 0, 1, 0); instead of dm_init();

More info you can find here:
http://deluxe-menu.com/cross-frame-mode-sample.html


Q: The problem is now that I have a scroll bar in the main menus although there is nothing to scroll.

Do you have any ideas?


A: You've set the exact width and height for submenus.

  var smWidth = "100";
  var smHeight = "250px";
  var menuStyles = [
["smWidth=220px","smHeight=250px"],
["smWidth=200px","smHeight=250px"],
["smWidth=120px","smHeight=250px"],
];

Try to write:

  var smWidth = "";
  var smHeight = "";
  var menuStyles = [
[""],
[""],
[""],
];
There will be no scroll bar in the main menus.


Q: If   var bselectedSmItem= anything other than 0, the dropdown menu maken links do not work and I get the following error:

A: You should set bselectedSmItem parameter in tabMode=1 only. When youhave subitems.

I'm also sending you the fixed version of dtabs.js file. Please, useit.



Q: I am setting up a 3 tab script and each tab opens a new page but the state of the javascript tab menu selected reverts back to the default tab.а Howdo I keep the tab selected when advancing to the next tab (new page)?

A: You should change the selected tab depending on the page you are now.

This Tabs menu can save pressed item automatically within1 page only. If you open another page, the menu can't remember presseditem. You should do that manually using Javascript and menu parameters(  var bselectedItem) or using any server-side script (php, asp, etc.)

Deluxe Tabs doesn't support API functions which can return theselected tab.

So, you can set "bselectedItem" parameter based on your link beforeyou call data.js file.

For example, move "bselectedItem" parameter from data.js file to yourcode.

<TD vAlign=top align=left>
/* Select Tab */
<script type="text/javascript" language="JavaScript1.2">
  var bselectedItem=<?php echo $seltabs; ?>;
</script>
<SCRIPT src="data.js" type=text/javascript></SCRIPT>
</TD>

You should define seltabs using server side script.