YUI Library JavaScript DHTML





    
Using the Container ARIA Plugin

/*margin and padding on body element
  can introduce errors in determining
  element position and are not recommended;
  we turn them off as a foundation for YUI
  CSS treatments. */
body {
  margin:0;
  padding:0;
}








  /* Default/unfocused Panel style */
  .yui-skin-sam div[role=panel].yui-panel .hd {
    background: #F2F2F2;
  }
  /* Focused Panel style */  
  .yui-skin-sam .yui-panel-container.focused div[role=panel].yui-panel .hd {
    background: url(http://yui.yahooapis.com/2.5.2/build/assets/skins/sam/sprite.png) repeat-x 0 -200px;
  }
  
  /*
    The Container ARIA Plugin removes the "href" attribute from the  used to create the 
    close button for a Panel, resulting in the focus outline no longer be rendered in 
    Gecko-based browsers when the 
 element is focused.  For this reason, it is necessary to 
    restore the focus outline for the 
.
  */  
  a.container-close[role=button]:focus {
    outline: dotted 1px #000;
  }
  /*
    Necessary to explicitly set the text-align property so the content of the Panels 
    is aligned properly when viewed inside the YUI Examples chrome.
  */
  #panel-2,
  #panel-3 {
    text-align: left;
  }
  





Using the Container ARIA Plugin



  


The Container ARIA Plugin makes it easy to use the 
WAI-ARIA Roles and States
 with the Container
family of controls.
Using the ARIA plugin, Dialogs, Alerts and Tooltips created using the Container family are 
more interoperable with assistive technologies (AT), such as screen readers, making them more 
accessible to users with disabilities.



Watch a screen cast of this example 
running in Firefox 3 with the NVDA screen reader, to see immediately the benefits that 
ARIA provides, or 
download the latest development snapshot of 
NVDA to test this example for yourself.

      



  (function () {
  
    var Event = YAHOO.util.Event,
      Dom = YAHOO.util.Dom;
    Event.onDOMReady(function () {
      var oPanel1 = new YAHOO.widget.Panel("panel-1", {
        
        visible: false,
        fixedcenter: true,
        constraintoviewport: true,
        width: "300px"
      
      });
      
      oPanel1.render();
      
      Event.on("show-dialog-1", "click", oPanel1.show, null, oPanel1);
      var oTooltip1 = new YAHOO.widget.Tooltip("tooltip-1", { 
        context:"show-dialog-1", 
        text:"Shows a Dialog built using Panel from existing markup.",
        iframe: true,
        showDelay:500 } );
      var oPanel2 = new YAHOO.widget.Dialog("panel-2", {
        
        modal: true,
        visible: false,
        fixedcenter: true,
        constraintoviewport: true,
        width: "300px",
        postmethod: "form"
      
      });  
      oPanel2.render(document.body);
      Event.on("show-dialog-2", "click", oPanel2.show, null, oPanel2);  
      var oTooltip2 = new YAHOO.widget.Tooltip("tooltip-2", { 
        context:"show-dialog-2", 
        text:"Shows a Modal Dialog built using Dialog from existing markup.",
        iframe: true,
        showDelay:500 } );
      var handleOK = function() {
        this.cancel();
      };
      
      var oPanel3 = new YAHOO.widget.SimpleDialog("panel-3", {
        
        modal: true,
        icon: YAHOO.widget.SimpleDialog.ICON_INFO,
        visible: false,
        fixedcenter: true,
        constraintoviewport: true,
        width: "300px",
        role: "alertdialog",
        buttons: [ { text:"OK", handler:handleOK, isDefault:true } ],
        text: "Your changes have been saved."
      
      });  
      oPanel3.setHeader("Info");
      oPanel3.render(document.body);
      var oTooltip3 = new YAHOO.widget.Tooltip("tooltip-3", { 
        context:"show-dialog-3", 
        text:"Shows a Modal Dialog built using SimpleDialog using the ARIA role of alertdialog.",
        iframe: true,
        showDelay:500 } );
      
      Event.on("show-dialog-3", "click", oPanel3.show, null, oPanel3);          
    });
  
  }());

Show Dialog 1
Show Dialog 2
Show Dialog 3


  Personal Information

  
    

      First Name
      
    

    

      Last Name
      
    
  
    

      Email
      
    
    
    

      
    

  




  Personal Information
  
    
      

        First Name
        
      

      

        Last Name
        
      
  
      

        Email
        
      

      

        
      

    
  

  




   
  
yui_2.7.0b.zip( 4,431 k)