YUI Library Home

YUI Library Examples: Container Family: Simple Panel Example

Container Family: Simple Panel Example

Use the show/hide buttons below to show and hide two simple panels. The first panel is created based on markup on the page and its draggable configuration is set to true; it can be dragged around the screen.

Creating Two Simple Panels

The Panel Control is an extension of Overlay that is meant to behave similarly to an OS window. Unlike true browser popup windows, Panel Control instances are floating DHTML elements embedded directly within the page context. The Panel Control extends the functionality of Overlay, adding support for modality, drag and drop, and close/dismiss buttons. Panel includes a pre-defined stylesheet to support the default look and feel characteristics that you see on this page.

In this tutorial, we will build two Panels. One of them will be based on existing markup; the other will be created dynamically using script. We'll pass configuration properties via the constructor to specify any non-default settings we want to use in our Panel instances.

1// Instantiate a Panel from markup 
2YAHOO.example.container.panel1 = new YAHOO.widget.Panel("panel1", { width:"320px", visible:false, constraintoviewport:true } ); 
3YAHOO.example.container.panel1.render(); 
4 
5// Instantiate a Panel from script 
6YAHOO.example.container.panel2 = new YAHOO.widget.Panel("panel2", { width:"320px", visible:false, draggable:false, close:false } ); 
7YAHOO.example.container.panel2.setHeader("Panel #2 from Script"); 
8YAHOO.example.container.panel2.setBody("This is a dynamically generated Panel."); 
9YAHOO.example.container.panel2.setFooter("End of Panel #2"); 
10YAHOO.example.container.panel2.render("container"); 
view plain | print | ?

These Panels introduce a few configuration properties. The constraintoviewport property, when set to true, will keep the Panel from being positioned outside of the viewport; this defends against the panel being dragged out of the viewport by the user and against the panel being moved outside the viewport by scripted changes to its x/y properties. The draggable property determines whether the Panel can be dragged (be sure to include the Drag and Drop Utility if you want your panel to be draggable), and the close property determines whether the close icon should be displayed in the header of the Panel.

The markup for panel1 is in standard module format, as is required by the Module and Overlay classes on which Panel is built. We also provide buttons to allow for easy showing and hiding of both Panels:

1<div> 
2    <button id="show1">Show panel1</button>  
3    <button id="hide1">Hide panel1</button> 
4</div> 
5 
6<div id="panel1"
7    <div class="hd">Panel #1 from Markup</div> 
8    <div class="bd">This is a Panel that was marked up in the document.</div> 
9    <div class="ft">End of Panel #1</div> 
10</div> 
11 
12<div> 
13    <button id="show2">Show panel2</button>  
14    <button id="hide2">Hide panel2</button> 
15</div> 
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.

YUI Logger Output:

Logger Console

INFO 0ms (+0) 12:48:17 PM:

global

Logger initialized

Note: You are viewing this example in debug mode with logging enabled. This can significantly slow performance.

Reload with logging
and debugging disabled.

Container Family Examples:

More Container Family Resources:

Copyright © 2009 Yahoo! Inc. All rights reserved.

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