YUI Library Examples: Button Control: Menu Buttons

Button Control: Menu Buttons

This example demonstrates different ways to create a Menu Button.

Creating Menu Buttons

With the inclusion of the optional Menu library, it is possible to create Buttons that incorporate a menu.

Menu Buttons can be created with or without existing HTML. In either case, create a Menu Button by setting the "type" configuration attribute to "menu" and the "menu" configuration attribute to one of the following values:

  • Object specifying a YAHOO.widget.Menu instance.
  • Object specifying a YAHOO.widget.Overlay instance.
  • String specifying the id attribute of the <div/> element used to create the menu. By default the menu will be created as an instance of YAHOO.widget.Overlay. If the default CSS class name for YAHOO.widget.Menu is applied to the <div/> element, it will be created as an instance of YAHOO.widget.Menu.
  • String specifying the id attribute of the <select/> element used to create the menu.
  • Object specifying the <select/> element used to create the menu.
  • Array of object literals, each representing a set of YAHOO.widget.MenuItem configuration properties.
  • Array of strings representing the text labels for each item in the menu.

Since the "menu" attribute can be set to the id of an existing <select/> element, a Menu Button can be used to collapse two HTML form controls (<input/> and <select/>) into one DHTML control. For example, consider the following HTML:

To instantiate a Menu Button, pass the id of the source element as the first argument to the Button's constructor. Set the "type" configuration attribute to "menu" and the "menu" configuration attribute to the id of the Button's corresponding <select/> element.

Please note: If the source <input/> element's type was "submit," the Menu Button will automatically submit its parent form when the user clicks or presses the button or chooses an option from the its menu.

Another way to create a Menu Button from markup is to begin with an <input/> element and the markup format required for YAHOO.widget.Overlay:

To instantiate the Menu Button, pass the id of the source element as the first argument to the Button's constructor. Set the "type" configuration attribute to "menu" and the "menu" configuration attribute to the id or node reference of the HTML element to be used to create the Overlay:

Using an Overlay instance as a Menu Button's menu is useful when you need a simple container to house HTML content or another YUI widget, such as a Calendar or Color Picker.

It is also possible to create a Menu Button that utilizes YAHOO.widget.Overlay completely from JavaScript. Simply instantiate and render an Overlay instance. Then instantiate a Menu Button, setting its "type" configuration attribute to "menu" and its "menu" configuration attribute to the Overlay instance via an object literal passed as a single argument to the Button's constructor:

Another easy way to create a Menu Button from JavaScript is to set the "menu" configuration property to an array of YAHOO.widget.MenuItem configuration properties.

Copyright © 2008 Yahoo! Inc. All rights reserved.

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