YUI recommends YUI 3.

YUI 2 has been deprecated since 2011. This site acts as an archive for files and documentation.

YUI Library Home

YUI Library Examples: Button Control: Split Buttons

Button Control: Split Buttons

This example demonstrates different ways to create and use a Split Button.

Split Buttons
From Markup
Split Button 3 Menu
From JavaScript

Creating Split Buttons

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

Split Buttons can be created with or without existing HTML. In either case, create a Split Button by setting the "type" configuration attribute to "split" 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.

Creating Split Buttons Using Existing Markup

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

1<input type="submit" id="splitbutton1" name="splitbutton1_button" value="Split Button 1"
2<select id="splitbutton1select" name="splitbutton1select" multiple> 
3    <option value="0">One</option> 
4    <option value="1">Two</option> 
5    <option value="2">Three</option>                 
6</select> 
7 
8<input type="button" id="splitbutton2" name="splitbutton2_button" value="Split Button 2"
9<select id="splitbutton2select" name="splitbutton2select"
10    <option value="0">One</option> 
11    <option value="1">Two</option> 
12    <option value="2">Three</option>                 
13</select> 
view plain | print | ?

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

1var oSplitButton1 = new YAHOO.widget.Button("splitbutton1", { type: "split"
2                                        menu: "splitbutton1select" }); 
3 
4var oSplitButton2 = new YAHOO.widget.Button("splitbutton2", { type: "split",  
5                                        menu: "splitbutton2select" }); 
view plain | print | ?

As a convenience, if the "type" attribute of the Button's source <input> element was set to "submit", clicking on any MenuItem in the Button's Menu will automatically submit the Button's parent <form>.

Adding MenuItems To A Button's Menu

Add MenuItems to a Button's Menu using the Menu's addItem, addItems, and insertItem methods. The following example adds two additional MenuItems to the first Button's Menu by passing an array of object literals (each containing a set of MenuItem configuration properties) to the addItems method.

1//  "render" event handler for the Button's Menu 
2 
3var onMenuRender = function (p_sType, p_aArgs) { 
4 
5    this.addItems([ 
6 
7        { text: "Four", value: 4 }, 
8        { text: "Five", value: 5 } 
9 
10    ]); 
11     
12}; 
13 
14 
15//  Add some additional MenuItems to the Button's Menu once it has been rendered 
16 
17oSplitButton1.getMenu().subscribe("render", onMenuRender); 
view plain | print | ?

Adding Click Event Listeners To A Split Button

The most common events to listen for on a Split Button are click events. A standard click event is fired when the face/text label of a Split Button is clicked. Use the on method or onclick configuration attribute to listen for the click event. (Note: The click event is not fired when the user clicks on the area of the Button that displays the Button's Menu.)

1//  "click" event handler for the Button - called when the user clicks  
2//  on the Button's text label, not when the user clicks on the area  
3//  of the Button that displays the Button's Menu. 
4 
5var onButtonClick = function () { 
6 
7    YAHOO.log("You clicked the Button."); 
8     
9}; 
10 
11//  Create a Button using an existing <input> and <select> element 
12 
13var oSplitButton2 = new YAHOO.widget.Button("splitbutton2", { type: "split", menu: "splitbutton2select", onclick: { fn: onButtonClick } }); 
view plain | print | ?

Split Buttons also fire an option event when the user clicks on the area the that invokes the display of its menu. Use the on method to listen for the option event.

1//  "click" event handler for the Button - called when the user clicks  
2//  on the Button's text label, not when the user clicks on the area  
3//  of the Button that displays the Button's Menu. 
4 
5var onButtonClick = function () { 
6 
7    YAHOO.log("You clicked the Button."); 
8     
9}; 
10 
11//  Create a Button using an existing <input> and <select> element 
12 
13var oSplitButton2 = new YAHOO.widget.Button("splitbutton2", { type: "split", menu: "splitbutton2select", onclick: { fn: onButtonClick } }); 
14 
15 
16//  "option" event listener - called when the user clicks on the  
17//  area of the Button that displays its Menu. 
18 
19var onOption = function () { 
20     
21    YAHOO.log("You clicked the Split Button's option area."); 
22     
23}; 
24 
25//  Add a listener for the Button's "option" event 
26 
27oSplitButton2.on("option", onOption); 
view plain | print | ?

Add event listeners to a Button's Menu using the Menu's subscribe method. The following example adds a click event listener to the Button's Menu. The click event listener displays the text label and value of the MenuItem that was clicked.

1//  "click" event handler for the Button - called when the user clicks  
2//  on the Button's text label, not when the user clicks on the area  
3//  of the Button that displays the Button's Menu. 
4 
5var onButtonClick = function () { 
6 
7    YAHOO.log("You clicked the Button."); 
8     
9}; 
10 
11//  Create a Button using an existing <input> and <select> element 
12 
13var oSplitButton2 = new YAHOO.widget.Button("splitbutton2", { type: "split", menu: "splitbutton2select", onclick: { fn: onButtonClick } }); 
14 
15//  Click event listener for the second Button's Menu instance 
16 
17var onMenuClick = function (p_sType, p_aArgs) { 
18 
19    var oEvent = p_aArgs[0],    //  DOM event 
20        oMenuItem = p_aArgs[1]; //  MenuItem instance that was the target of the event 
21 
22    if (oMenuItem) { 
23        YAHOO.log("[MenuItem Properties] text: " + oMenuItem.cfg.getProperty("text") + ", value: " + oMenuItem.value); 
24    } 
25 
26}; 
27 
28//  Add a "click" event listener for the Button's Menu 
29 
30oSplitButton2.getMenu().subscribe("click", onMenuClick); 
31 
32//  "option" event listener - called when the user clicks on the  
33//  area of the Button that displays its Menu. 
34 
35var onOption = function () { 
36     
37    YAHOO.log("You clicked the Split Button's option area."); 
38     
39}; 
40 
41//  Add a listener for the Button's "option" event 
42 
43oSplitButton2.on("option", onOption); 
view plain | print | ?

Another way to create a Split Button from markup is to begin with an <input> element and the markup format required for Overlay:

1<input type="button" id="splitbutton3" name="splitbutton3_button" value="Split Button 3"
2<div id="splitbutton3menu" class="yui-overlay"
3    <div class="bd">Split Button 3 Menu</div> 
4</div> 
view plain | print | ?

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

1var oSplitButton3 = new YAHOO.widget.Button("splitbutton3", { type: "split",  
2                                        menu: "splitbutton3menu" }); 
view plain | print | ?

Using an Overlay instance as a Split 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.

Creating Split Buttons Using JavaScript

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

1//  Search for an element to place the Split Button into via the  
2//  Event Utility's "onContentReady" method 
3 
4YAHOO.util.Event.onContentReady("splitbuttonsfromjavascript"function () { 
5 
6    // Instantiate an Overlay instance 
7 
8    var oOverlay = new YAHOO.widget.Overlay("splitbutton4menu", { visible: false }); 
9 
10    oOverlay.setBody("Split Button 4 Menu"); 
11 
12    // Instantiate a Split Button 
13 
14    var oSplitButton4 = new YAHOO.widget.Button({ type: "split",  label: "Split Button 4", menu: oOverlay, container: this }); 
15    
16}); 
view plain | print | ?

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

1//  Search for an element to place the Split Button into via the  
2//  Event Utility's "onContentReady" method 
3 
4YAHOO.util.Event.onContentReady("splitbuttonsfromjavascript"function () { 
5 
6    //  "click" event handler for each item in the Button's Menu 
7 
8    var onMenuItemClick = function (p_sType, p_aArgs, p_oItem) { 
9 
10        var sText = p_oItem.cfg.getProperty("text"); 
11 
12        YAHOO.log("[MenuItem Properties] text: " + sText + ", value: " + p_oItem.value); 
13 
14    }; 
15 
16    //  Create an array of YAHOO.widget.MenuItem configuration properties 
17 
18    var aSplitButton5Menu = [ 
19 
20        { text: "One", value: 1, onclick: { fn: onMenuItemClick } }, 
21        { text: "Two", value: 2, onclick: { fn: onMenuItemClick } }, 
22        { text: "Three", value: 3, onclick: { fn: onMenuItemClick } } 
23 
24    ]; 
25 
26    //  Instantiate a Split Button using the array of YAHOO.widget.MenuItem  
27    //  configuration properties as the value for the "menu"  
28    //  configuration attribute. 
29 
30    var oSplitButton5 = new YAHOO.widget.Button({ type: "split",  label: "Split Button 5", name: "splitbutton5", menu: aSplitButton5Menu, container: this }); 
31 
32}); 
view plain | print | ?

Configuration for This Example

You can load the necessary JavaScript and CSS for this example from Yahoo's servers. Click here to load the YUI Dependency Configurator with all of this example's dependencies preconfigured.

Copyright © 2011 Yahoo! Inc. All rights reserved.

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