Recent Questions
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 want to use the java mac tabs, but my sub menu has no image like on the table sample on your site.
A: You should assign Individual Style for all subitems:
var bmenuItems = [
["XP Tab 1","", "", "", "", "", "", "", "", ],
["|Link 1_1","testlink.htm", "", "", "", "", "0", "", "", ],
["|Link 1_2","testlink.htm", "", "", "", "", "0", "", "", ],
["|Link 1_3","testlink.htm", "", "", "", "", "0", "", "", ],
["|Link 1_4","testlink.htm", "", "", "", "", "0", "", "", ],
["|Link 1_5","testlink.htm", "", "", "", "", "0", "", "", ],
Q: Also once you click a link and go to a new page, how do you get the java choice menu tab for that new page to stay the highlighted one?
A: Deluxe Tabs doesn't support API functions which can return theselected tab aslo.
You can set "bselectedItem" and " var bselectedSmItem" parametersbased on your link before you call your data file.
For example, move " var bselectedItem" and " var bselectedSmItem" parametersfrom your data file to your code.
<TD vAlign=top align=left>
/* Select Tab */
<script type="text/javascript" language="JavaScript1.2">
var bselectedItem=<?php echo $seltabs; ?>;
var bselectedSmItem=<?php echo $selsmtabs; ?>;
</script>
<SCRIPT src="data.js" type=text/javascript></SCRIPT>
</TD>
You should define seltabs and selsmtabs using server side script.
You can also set it on every page before you call data.js file, forexample:
<TD vAlign=top align=left>
/* Select Tab */
<script type="text/javascript" language="JavaScript1.2">
var bselectedItem=4;
var bselectedSmItem=3;
</script>
<SCRIPT src="data.js" type=text/javascript></SCRIPT>
</TD>
Q: I also did not understand the difference between the "deluxe menu" and the "deluxe tree" software. Can you please send me a short description?
A: These are different menus.
Deluxe Tree is a tree view. Items in Deluxe Tree are expand/collapseon click.
Deluxe Menu is a cascade menu.