Yahoo! Developer Network Home - Help

YUI Library Examples: Menu Family: Grouped Menu Items With Titles From JavaScript

Menu Family: Grouped Menu Items With Titles From JavaScript

This example demonstrates how to title groups of MenuItem instances.

Note: By default clicking outside of a Menu instance will hide it. Additionally, MenuItem instances without a submenu or a URL to navigate to will hide their parent Menu instance when clicked. Click the "Show Menu" button below to make the Menu instance visible if it is hidden.

Creating a Menu from JavaScript with items organized into groups with titles

To create a Menu with no pre-existing markup on the page, call the Menu constructor (YAHOO.widget.Menu) passing the id of the Menu element to be created as the first argument.

Add items to a Menu instance via the addItem, insertItem, or addItems methods.

Items can be organized into groups by creating a multi-dimensional array of YAHOO.widget.MenuItem configuration properties and passing it to the addItems method. Add a title to each group via the setItemGroupTitle method.

Finally, it is necessary to call the render method passing the id of, or reference to the element the Menu should be appended to.

1/*
2     Instantiate a Menu:  The first argument passed to the 
3     constructor is the id of the element in the page 
4     representing the Menu; the second is an object literal 
5     of configuration properties.
6*/ 
7 
8var oMenu = new YAHOO.widget.Menu("menuwithgroups", { fixedcenter: true }); 
9 
10 
11/*
12    Add items to the Menu instance by passing an array of object literals 
13    (each of which represents a set of YAHOO.widget.MenuItem 
14    configuration properties) to the "addItems" method.
15*/ 
16 
17oMenu.addItems([ 
18 
19    [ 
20        { text: "Yahoo! Mail", url: "http://mail.yahoo.com" }, 
21        { text: "Yahoo! Address Book", url: "http://addressbook.yahoo.com" }, 
22        { text: "Yahoo! Calendar", url: "http://calendar.yahoo.com" }, 
23        { text: "Yahoo! Notepad", url: "http://notepad.yahoo.com" } 
24    ], 
25 
26    [ 
27 
28        { text: "Yahoo! Local", url: "http://local.yahoo.com" }, 
29        { text: "Yahoo! Maps", url: "http://maps.yahoo.com" }, 
30        { text: "Yahoo! Travel", url: "http://travel.yahoo.com" }, 
31        { text: "Yahoo! Shopping", url: "http://shopping.yahoo.com" }  
32     
33    ], 
34 
35    [ 
36 
37        { text: "Yahoo! Messenger", url: "http://messenger.yahoo.com" }, 
38        { text: "Yahoo! 360", url: "http://360.yahoo.com" }, 
39        { text: "Yahoo! Groups", url: "http://groups.yahoo.com" }, 
40        { text: "Flickr Photo Sharing", url: "http://www.flickr.com" } 
41     
42    ] 
43 
44]); 
45 
46 
47// Add the title for each group of menu items 
48 
49oMenu.setItemGroupTitle("Yahoo! PIM", 0); 
50oMenu.setItemGroupTitle("Yahoo! Search", 1); 
51oMenu.setItemGroupTitle("Yahoo! Communications", 2); 
52 
53 
54/*
55    Since this Menu instance is built completely from script, call the 
56    "render" method passing in the DOM element that it should be 
57    appended to.
58*/ 
59 
60oMenu.render("rendertarget"); 
view plain | print | ?

Menu Family Examples:

More Menu Family Resources:

Copyright © 2008 Yahoo! Inc. All rights reserved.

Privacy Policy - Terms of Service - Copyright Policy - Job Openings