Recent Questions Ajax Style Category Tree Listing
Q: Also I have a problem getting the separator to show in my javascript right click menu. I have individual settings for the main menu items. I then tried to place an after item image, and they will show, though then the mouseover image does not work.
A: To add a separator you should
//--- Separators
var separatorImage=""; //for subitems (top items in vertical javascript right click menu)
var separatorWidth="100%";
var separatorHeight="3px";
var separatorAlignment="right";
var separatorVImage="separator.gif"; //for the top items (subitems items in vertical menu)
var separatorVWidth="100%";
var separatorVHeight="2px";
var separatorPadding="";
You can create separators using menuItems (you can do it in DeluxeTuner, use "Add separator" button), for example:
var menuItems = [
["item 1"],
["-"], // this item is separator
["item 2"],
];
Q: We would like it so when you click on an option in the free dhtml menu, the page shows up in the main middle frame..So far, I can only seem to get it to show up in its own page.
A: You should set the correct target parameter for your items.
You can set target parameter for all items:
var itemTarget="main";
Where main - is the name of the main middle frame where you want to open the link.
["Home","testlink.html", "", "", "", "main", "", "", "", "", "", ], Q: Many thanks for your response.
What I meant to say was that the Deluxe tabs onmouseover maker did not include the vertical tabs as part of its repertoire and as a result, I was not able to produce it and integrate it into my page. I am not confident that I can edit the HTML adequately to make it work on my site if the Deluxe Maker did nod not generate it. I will look at this again and see if I reinstall the deluxe tuner whether it will generate the data for the vertical tabs.
Many Thanks for your assistance.
A: Set '$' symbol in the beginning of items text to start new row:
var bmenuItems = [
["Item 39","", "", "", "", "", "", "", "", ],
["$Item 40","", "", "", "", "", "", "", "", ],
["$Item 41","", "", "", "", "", "", "", "", ],
["$Item 42","", "", "", "", "", "", "", "", ],
];
You can open the data file for this sample in Deluxe Tuner and changeit.
C:\Program Files\JavaScript Tree Menus Trial\deluxe-tabs\tabs-vertical.js
Q: How do I turn off transitional effects in my ajax dropdown menu?
A: You should set the following ajax dropdown menu parameters.
var transition=-1;
var transOptions="";
var transDuration=0;
var transDuration2=0;