|
I only want one sub-menu to have multi-columns in down menu in javascript.
Return to Recent Questions
Q:
How do I make the sub-menu for the 'Sample' down menu in javascript item a multi-column and leave the
'Product Info' down menu in javascript item as is Using the example down menu in javascript you have. I want only certain sub-menus to have
multi-columns. I don't want all down menu in javascript items to have a multi-column submenu.
A:
Please, see the attached example.
You should use Individual Item Styles.
var menuStyles = [
["smColumns=2"],
["smColumns=1"], //style 1
];
...
["More Samples","testlink.htm"],
["|Group 1","", , , , , "3", "1", , ], //assign style 1
Try that.
Return to Recent Questions
|