Yes no Dialog : Window Dialog « Ajax Layer « JavaScript DHTML

Home
JavaScript DHTML
1.Ajax Layer
2.Data Type
3.Date Time
4.Development
5.Document
6.Dojo toolkit
7.Event
8.Event onMethod
9.Ext JS
10.Form Control
11.GUI Components
12.HTML
13.Javascript Collections
14.Javascript Objects
15.Javascript Properties
16.jQuery
17.Language Basics
18.Mochkit
19.Mootools
20.Node Operation
21.Object Oriented
22.Page Components
23.Rico
24.Scriptaculous
25.Security
26.SmartClient
27.Style Layout
28.Table
29.Utilities
30.Window Browser
31.YUI Library
JavaScript DHTML » Ajax Layer » Window Dialog 
Yes no Dialog

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>YAHOO.widget.SimpleDialog</title>

<script type="text/javascript" src="./build/yahoo/yahoo.js" ></script>
<script type="text/javascript" src="./build/event/event.js" ></script>
<script type="text/javascript" src="./build/dom/dom.js" ></script>
<script type="text/javascript" src="./build/dragdrop/dragdrop.js" ></script>
<script type="text/javascript" src="./build/animation/animation.js" ></script>

<link rel="stylesheet" type="text/css" href="./build/fonts/fonts.css" />
<link rel="stylesheet" type="text/css" href="./examples/container/css/example.css" />

<link rel="stylesheet" type="text/css" href="./build/container/assets/container.css" />
<script type="text/javascript" src="./build/container/container.js"></script>

<script language="javascript">
  YAHOO.namespace("example.simpledialog");

  function init() {
    var handleCancel = function(e) {
      alert("You clicked 'Cancel'!");
      this.hide();
    }

    var handleOK = function(e) {
      alert("You clicked 'OK'!");
      this.hide();
    }

    YAHOO.example.simpledialog.dlg = new YAHOO.widget.SimpleDialog("dlg"visible:false, width: "20em", effect:[{effect:YAHOO.widget.ContainerEffect.SLIDE,duration:0.25},{effect:YAHOO.widget.ContainerEffect.FADE,duration:0.25}], fixedcenter:true, modal:true, draggable:false });
    
    YAHOO.example.simpledialog.dlg.setHeader("Warning!");
    YAHOO.example.simpledialog.dlg.setBody("Are you sure you want to do this?");

    YAHOO.example.simpledialog.dlg.cfg.queueProperty("icon",YAHOO.widget.SimpleDialog.ICON_WARN);
    YAHOO.example.simpledialog.dlg.cfg.queueProperty("buttons"
                                    text:"OK", handler:handleOK, isDefault:true },
                                    text:"Cancel", handler:handleCancel }
                                  ]);

    var listeners = new YAHOO.util.KeyListener(document, keys : 27 }{fn:handleCancel ,scope:YAHOO.example.simpledialog.dlg, correctScope:true} );
    YAHOO.example.simpledialog.dlg.cfg.queueProperty("keylisteners", listeners);

    YAHOO.example.simpledialog.dlg.render(document.body);
  }

  YAHOO.util.Event.addListener(window, "load", init);

</script>
</head>
<body>
  <div class="box">
    <div class="hd">
      <h1>SimpleDialog Example</h1>
    </div>
    <div class="bd">
      <p>SimpleDialog is an implementation of <a href="panel.html">Panel</a> that behaves like an OS dialog. SimpleDialog is used for asking the user a simple question that usually involves a Yes/No or OK/Cancel response.</p> 

      <p>The code to instantiate this SimpleDialog example looks like this:
        <code>dlg = new YAHOO.widget.SimpleDialog("dlg"width: "20em", effect:{effect:YAHOO.widget.ContainerEffect.FADE,duration:0.25}, fixedcenter:true, modal:true, draggable:false });<br/><br/>
    YAHOO.example.simpledialog.dlg.setHeader("Warning!");<br/>
    YAHOO.example.simpledialog.dlg.setBody("Are you sure you want to do this?");<br/>
    YAHOO.example.simpledialog.dlg.cfg.setProperty("icon",YAHOO.widget.SimpleDialog.ICON_WARN);
        </code>
        Next, we wire up the buttons using a simple JSON structure that points to local handlers for each button:
        <code>        
        dlg.cfg.setProperty("buttons",  
            text:"OK", handler:handleOK, isDefault:true },
            text:"Cancel",handler:handleCancel 
            ]
        );
        </code>
      </p>

      <button onclick="YAHOO.example.simpledialog.dlg.show()">Show me a dialog</button>
      <select>
        <option>This is a &lt;select&gt; element, helpul for testing the IFRAME shim</option>
      </select>
    </div>
  </div>

</body>
</html>


           
       
yui.zip( 3,714 k)
Related examples in the same category
1.Mv Window Beta1
2.Windows XP style popup panel
3.Model dialog (set background browser client area to gray)
4.Popup panel (dialog)
5.Photo Box Example
6.Resizable popup window
7.Popup window
8.DHTML Windowing Toolkit Demo
9.Javascript based window system
10.Drag and drop window system
11.XP style window
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.