|
|
|
Do the Vista style menu using java script support a separator?
Return to Recent Questions
Q:
Do the Vista style menu using java script support a separator?
It seems to add some space but the separator line is not on my menu using java script.
A:
Yes, you can paste a separator in the Vista style menu using java script.
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 javascript disable button?
- Apr 04, 2009 - I now have the need to introduce separators on the drop down menu generator.
- Apr 12, 2009 - For some reason my item separator image won't show in script pull down menu...
- Apr 18, 2009 - Does your menu supports key navigation, like Alt-F to select a html navigation bar?
- Apr 21, 2009 - If your javascript horizontal menu supports key navigation, like Alt-F to select a javascript horizontal menu?
- May 07, 2009 - Does your javascript menu drop support right-to-left languages, like Hebrew?
- May 09, 2009 - I am unable to see any separators when working with web site menu...
- May 29, 2009 - Does tree menu script have support for Chinese or other Unicode characters?
- Jun 14, 2009 - The separator image doesn't show in javascript navigation menu
- Jun 23, 2009 - I cannot get the separator images to appear in the net dhtml menu.
- Aug 29, 2009 - It seems to me that this navigation menu bar supports IE (on the PC and Mac) only.
|