|
|
|
Do the Vista style expandable menu tree support a separator?
Return to Recent Questions
Q:
Do the Vista style expandable menu tree support a separator?
It seems to add some space but the separator line is not on my expandable menu tree.
A:
Yes, you can paste a separator in the Vista style expandable menu tree.
Please, see the following parameters:
//--- Separators
var separatorImage=""; //for subitems
var separatorWidth="5";
var separatorHeight="100%";
var separatorAlignment="right";
var separatorVImage="images/public/separator.gif"; //for the top items
var separatorVWidth="3";
var separatorVHeight="100%";
var separatorPadding="";
You should set a separator in the menuItems, for example:
var menuItems = [
["Home","index.cfm", , , , , , , , ],
["-"],
["About Us","about.cfm", , , , , , , , ],
];
Try that.
Return to Recent Questions
Related:
- March 21, 2009 - How can we increase the width of the vista style buttons of menu js?
- Apr 04, 2009 - I now have the need to introduce separators on the menu tree javascript.
- Apr 12, 2009 - For some reason my item separator image won't show in horizontal menu css...
- Apr 18, 2009 - Does your menu supports key navigation, like Alt-F to select a hover menu?
- Apr 21, 2009 - If your css hover menu supports key navigation, like Alt-F to select a css hover menu?
- May 07, 2009 - Does your menus javascript support right-to-left languages, like Hebrew?
- May 09, 2009 - I am unable to see any separators when working with css menu list...
- May 29, 2009 - Does java dropdown menu have support for Chinese or other Unicode characters?
- Jun 14, 2009 - The separator image doesn't show in javascript cascading menu
- Jun 23, 2009 - I cannot get the separator images to appear in the javascript drag.
- Aug 29, 2009 - It seems to me that this simple javascript menu supports IE (on the PC and Mac) only.
|