Jump to Table of Contents

Overlay

Overlay is a positionable and stackable widget, which also provides support for the standard module format layout, with a header, body and footer section.

The overlay is built by extending the Widget class and adding the WidgetPosition, WidgetStack, WidgetPositionAlign, WidgetPositionConstrain and WidgetStdMod extensions, and doesn't actually need to add any implementation code of its own. The "Creating Custom Widget Classes" example shows how you can use these extensions to build classes which mix and match some of the above features.

Getting Started

To include the source files for Overlay and its dependencies, first load the YUI seed file if you haven't already loaded it.

<script src="http://yui.yahooapis.com/3.11.0/build/yui/yui-min.js"></script>

Next, create a new YUI instance for your application and populate it with the modules you need by specifying them as arguments to the YUI().use() method. YUI will automatically load any dependencies required by the modules you specify.

<script>
// Create a new YUI instance and populate it with the required modules.
YUI().use('overlay', function (Y) {
    // Overlay is available and ready for use. Add implementation
    // code here.
});
</script>

For more information on creating YUI instances and on the use() method, see the documentation for the YUI Global Object.

Note: be sure to add the yui3-skin-sam classname to the page's <body> element or to a parent element of the widget in order to apply the default CSS skin. See Understanding Skinning.

<body class="yui3-skin-sam"> <!-- You need this skin class -->

Using Overlay

Instantiating The Overlay

The Overlay widget extends the Widget class, and hence the Overlay constructor follows the same pattern as any Widget constructor, accepting a configuration object to set the initial configuration for the widget.

Instantiating From Markup: Progressive Enhancement

The overlay can be instantiated from markup, by specifying the srcNode which contains the header, body and footer content for the overlay:

<div id="myContent">
    <div class="yui3-widget-hd">Overlay Header</div>
    <div class="yui3-widget-bd">Overlay Body</div>
    <div class="yui3-widget-ft">Overlay Footer</div>
</div>

The header, body and footer sections provided in markup need to be marked with the class name which Overlay (or more accurately, WidgetStdMod) expects for the section ("yui3-widget-hd", "yui3-widget-bd" and "yui3-widget-ft") as shown above. All of these sections are optional. If content is set via the API at a later point the corresponding section will be created dynamically.

When instantiating from markup, a reference to the srcNode is provided in the configuration object. This reference can be a node reference, or a selector string which can be used to identify the node. If the selector string is too broad (returns multiple nodes), the first node found will be used. The following code targets the markup shown above:

YUI({...}).use("overlay", function(Y) {

    //...
    var overlay = new Y.Overlay({
        // Specify a reference to a node which already exists 
        // on the page and contains header/body/footer content
        srcNode:"#myContent",

        // Also set some of the attributes inherited from
        // the base Widget class.
        visible:false,
        width:"20em"
    });
    //...

});

Following instantiation, a call to render is required to have the Overlay's state reflected in the DOM, as with all YUI 3 widgets:

var overlay = new Y.Overlay({ ... });
overlay.render();

Note that you could set the state of the Overlay multiple times (modifying content, changing dimensions etc.) before rendering. When the render method is invoked, the state of the Overlay at that point in time will be reflected in the DOM.

When render is invoked, the overlay's content box will be wrapped by the bounding box (another DIV), to provide the nested box structure common to all widgets.

Instantiating From Script

You can also create Overlay instances entirely from script, setting content programmatically, using the headerContent, bodyContent and footerContent attributes.

var overlay = new Y.Overlay({
    headerContent:"My Overlay Header",
    bodyContent:"My Overlay Body",
    footerContent:"My Footer Content",
    //...
});
overlay.render("#parentNode");

Content can be strings containing markup (innerHTML will be used to set the content), or Node references, in which case they will be appended to the section (header, body or footer) node.

The render method can be passed a node reference (or a selector string) as shown above, to specify the node under which the overlay's bounding box should be added to the DOM. When rendering an overlay instance which has not been created from markup (so it does not have a position in the DOM) if this argument is not provided the overlay will be added to the document's body element (inserted as the first child to avoid the potential for "operation aborted" errors in IE6).

Attributes

Overlay adds the following key attributes (through the extensions mentioned above), in addition to the attributes provided by the base Widget class:

AttributeDescription
x, y and xyPositioning attributes, to set the XY position in page coordinates on the Overlay's bounding box. Set to [0,0] by default
zIndexSets the z-index on the Overlay's bounding box. Set to 0 by default.
shimBoolean, indicating whether or not an iframe shim should be added to the Overlay to protect against select box bleed through. It is only enabled by default for IE6.
alignUsed to align a specific point on the Overlay's bounding box to a specific point on another node, or the viewport. Set to null by default.
centeredUsed to center the Overlay inside another node, or inside the viewport. Set to false by default.
constrainUsed to specify a node to constrain the Overlay to, when setting the XY position. Can also be set to true, to constrain to the viewport. Set to false by default.
headerContentUsed to set the content of the Overlay's header section. No default value set.
bodyContentUsed to set the content of the Overlay's body section. No default value set.
footerContentUsed to set the content of the Overlay's footer section. No default value set.
fillHeightSpecifies which of the 3 sections - header, body or footer, should be automatically sized to fill out the height of the Overlay if a fixed height has been set. Set to WidgetStdMod.BODY by default. Can be disabled by setting to null.

Positioning

Basic XY Positioning

Overlay provides basic XY positioning support through its x, y and xy attributes as well as a convenience move method which wraps the xy attribute.

The xy position of the overlay can be set in the constructor, as with any attribute value:

var overlay = new Y.Overlay({
    srcNode:"#myContent",
    xy: [200,100]
});
overlay.render();

// or

var overlay = new Y.Overlay({
    srcNode:"#myContent",
    x: 200,
    y: 100
});
overlay.render();

// or

var overlay = new Y.Overlay({
    srcNode:"#myContent",
    x: 200 // y defaults to 0
});
overlay.render();

The overlay's default position, if xy values are not provided, will be 0,0. Note that xy are page coordinates, not relative coordinates.

Changes in the overlay's position, when set programmatically through the API, can be monitored by listening for the attribute xyChange event. Listeners to this event will receive an event facade, which contains previous and new xy values:

// Listen to the "on" moment, if you're interested in
// preventing the change in position from occurring.
overlay.on("xyChange", function(e) {

    var currPosition = e.prevVal;
    var newPosition = e.newVal;

    if (newPosition[0] > MAX_X || newPosition[1] > MAX_Y) {
        // Stop move from occurring. 
        e.preventDefault();
    }
});

// Listen to the "after" moment, if you're just interested 
// in being notified when the position has been changed.
overlay.after("xyChange", function(e) {
    var position = e.newVal;
    console.log("Overlay has been moved to: " + position[0] + "," position[1]);
});

Note that changing just the x or y attribute value, individually, will still fire the xy change event. The x and y attribute values are simply convenience wrappers which end up setting the xy attribute.

XY position can also be set after construction, as with any attribute, using set to change the attribute value directly, or using the move method:

overlay.set("x", 100);

overlay.set("y", 200);

overlay.set("xy", [100,200]);

overlay.move(100,200);

overlay.move([100,200]);

The Basic XY Positioning example shows basic positioning in action.

Extended XY Positioning

Overlay also provides support to help position it relative to another node on the page, or the viewport, through the align and centered attributes, as well as the corresponding align() and centered() convenience methods, through the application of the WidgetPositionAlign extension.

The align attribute accepts as a value an object literal with the following properties:

node
The node to which the Widget is to be aligned. If set to null, or not provided, the Overlay is aligned to the viewport
points

A two element array, defining the two points on the Overlay and node which are to be aligned. The first element is the point on the Overlay, and the second element is the point on the node (or viewport). Supported alignment points are defined as static properties on WidgetPositionAlign. For example:

[Y.WidgetPositionAlign.TR, Y.WidgetPositionAlign.TL] aligns the Top-Right corner of the Overlay with the Top-Left corner of the node/viewport, and [Y.WidgetPositionAlign.CC, Y.WidgetPositionAlign.TC] aligns the Center of the Overlay with the Top-Center edge of the node/viewport.

// Align the:
// top-left corner of the overlay, with the 
// top-right corner of the node with id = "okBtn"
overlay.set("align", {
    node:"#okBtn",
    points:[Y.WidgetPositionAlign.TL, Y.WidgetPositionAlign.TR]
});

// Align the:
// right-center edge of the overlay, with the 
// right-center edge of the viewport (no node specified)
overlay.set("align", {
    points:[Y.WidgetPositionAlign.RC, Y.WidgetPositionAlign.RC]
});

// Align the:
// center of the overlay, with the 
// top-left corner of the node with id = "okBtn"
overlay.align("#okBtn", [Y.WidgetPositionAlign.CC, Y.WidgetPositionAlign.TL]);

The centered property can either by set to true to center the Overlay in the viewport, or set to a selector string or node reference to center the Overlay in a particular node.

// Center the overlay in the node with id = "module"
overlay.set("centered", "#module");

// Center the overlay in the viewport
overlay.set("centered", true);

The "Alignment Support" example shows aligned positioning support in action.

Note that currently alignment/centering is not maintained when the viewport is scrolled, window resized etc. Support to re-align the overlay on a default and custom set of trigger events will be provided in a future release.

In addition to being able to align the overlay to a given element (or the viewport), overlay also supports the ability to constrain its XY position to a given node, or to the viewport.

// Constrains the XY position to a given node:
overlay.set("constrain", "#constrainingNode");

// Or to the viewport
overlay.set("constrain", true);

The "Constrain Support" example shows constrained positioning in action.

Stacking

The Overlay provides basic stacking support in the form of a zIndex attribute and a shim attribute. The shimming support protects against <select> box bleed through on IE6 (It is enabled by default for IE6) by adding an iframe shim to the overlay's bounding box (positioned underneath the content box). The default value of the zIndex attribute is 0.

Using the zIndex and shim attributes is the same as any other attribute, with the ability to set values in the constructor, or at a later point in time:

// Disable shim for all browsers, set zIndex to 10
var overlay = new Y.Overlay({
    shim:false, // Disable for all browsers, including IE6
    zIndex:10
});

// Set zIndex to 10. Shim is enabled for IE6 but disabled for all
// other browsers (default value)
var overlay = new Y.Overlay({
    zIndex:10
});

The "Stack Support" example creates a simple "bringToTop" implementation based on the zIndex attribute. This support will be provided as part of Overlay itself (or more precisely, as part of WidgetStack) in a future release.

Setting Section Content

Overlay uses the standard module format for its rendering. It provides a header, body and footer section as described above (through the WidgetStdMod extension).

Replacing Content

The content for each of these sections is settable either through the headerContent, bodyContent and footerContent attributes. Setting the content through these properties will replace any existing content in the section. The content can either be specified as a string, in which case innerHTML will be used to set the new content, or specified as a Node instance, in which case the content will be added to the respective section using appendChild after clearing existing content.

var overlay = new Y.Overlay({
    headerContent: '<span class="title">My Header Content</span>',
    bodyContent: '<div class="mod">My Body Content</div>'
    // Don't want a footer
});

// or 

overlay.set("headerContent", '<span class="title">My Header Content</span>');

// or 

var headerContent = Y.Node.create("<span></span>");
headerContent.set("innerHTML", "My Header Content");
headerContent.addClass("title"); 

overlay.set("headerContent", headerContent);

Overlay will not create the section if there has been no content set for it. (So, for example, the overlay above will not have a footer section). Also, if the section doesn't exist it will be created, the first time content is set for it.

As with any attribute change, you can listen for (and prevent) changes in content by listening for the corresponding attribute change event:

overlay.on("bodyContentChange", function(e) {
    if (someCondition) {
        // Don't allow body content to be updated
        e.preventDefault():
    }
});

overlay.after("bodyContentChange", function(e) {
    // body section has been modified
});

Setting content in any of the sections will fire Widget's contentUpdate event, which can be monitored if you want to be notified of changes to any section. However, this event is purely a catch-all notification event. It cannot be prevented to stop the content change from occurring:

overlay.after("contentUpdate", function(e) {
    // Content has been updated in one of the standard module sections.
});

Inserting/Appending Content

Setting content using the attributes mentioned above always results in content being replaced. If you need to insert content before, or append content after existing content in the section, you can use the setStdModContent(section, content, where) method Overlay provides:

overlay.setStdModContent(
    Y.WidgetStdMod.HEADER,       // Section
    "New Content To Insert",   // Content
    Y.WidgetStdMod.BEFORE        // Where
);

overlay.setStdModContent(
    Y.WidgetStdMod.FOOTER,      // Section
    "New Content To Append",  // Content
    Y.WidgetStdMod.AFTER        // Where
);
  • The section argument specifies which section is to be updated. The constants WidgetStdMod.HEADER, WidgetStdMod.BODY and WidgetStdMod.FOOTER define valid values.
  • The content argument specifies the new content to be added which, as with the attributes, can be a string HTML value or a node reference.
  • The where argument specifies whether the content should be added before, after, or replace existing content. The constants WidgetStdMod.BEFORE, WidgetStdMod.AFTER and WidgetStdMod.REPLACE

    define valid values.

Note, the above WidgetStdMod constants define the set of valid values wherever the API expects a "section" or "where" argument.

The content change events mentioned above, will be fired when content is set through the setStdModContent method just as they would when setting the content using the attribute.

The Standard Module example provides a way to exercise the above content attributes and methods.

Markup Structure

The final rendered Overlay has the markup structure shown below:

<div class="yui3-widget yui3-overlay yui3-widget-positioned yui3-widget-stacked">
    <!--Bounding Box-->
    <div class="yui3-overlay-content yui3-widget-stdmod">
    <!--Content Box-->
        <div class="yui3-widget-hd">Overlay Header Content</div>
            <!--Header Section-->
        <div class="yui3-widget-bd">Overlay Body Content</div>
            <!--Body Section-->
        <div class="yui3-widget-ft">Overlay Footer Content</div>
            <!--Footer Section-->
    </div>

    <iframe class="yui3-widget-shim"></iframe>
        <!-- Stacking shim, if enabled-->

</div>

The bounding box is absolutely positioned by default, and top/left positioning and z-index values are applied to it. The nested bounding box/content box structure is discussed in detail on the Widget markup discussion.

In addition to the default classes applied to the bounding box and content box for all widgets ("yui3-overlay", "yui3-overlay-content", "yui3-widget"), the WidgetStdMod, WidgetPositioned and WidgetStack extensions also mark the appropriate boxes with "yui3-widget-stdmod", "yui3-widget-positioned" and "yui3-widget-stacked" classes as shown above.

The iframe shim, added if shim is enabled, is added to the bounding box, as sibling to the content box and stacked underneath it (using a -ve z-index).

CSS

Overlay is a generic, foundation widget and doesn't ship with a default look/feel out of the box. Its Sam Skin (build/overlay/assets/skins/sam/overlay.css) implementation consists only of core functional rules, to control how it is positioned and how it is hidden:

.yui3-overlay {
    position:absolute;
}

.yui3-overlay-hidden {
    visibility:hidden
}

Since it includes the WidgetStack extension, the following functional CSS is also provided (through build/widget/assets/skins/sam/widget-stack.css) to handle the shim element, (along with the Gecko/Mac scroll bar support CSS mentioned above)

.yui3-widget-stacked .yui3-widget-shim {
    opacity: 0;
    filter: alpha(opacity=0);
    position: absolute;
    border: none;
    top: 0px;
    left: 0px;
    padding: 0;
    margin: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    /* 
       We'll be setting these programmatically for IE6, 
       to account for cases where height is not set 
    */
    _width: 0;
    _height: 0;
}