Popup dialog : Dialog « Dojo toolkit « 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 » Dojo toolkit » Dialog 
Popup dialog
 
<html>
  <head>
    <link rel="StyleSheet" type="text/css"
      href="js/dojo/dijit/themes/tundra/tundra.css">
    <script type="text/javascript">
      var djConfig = {
        baseScriptUri : "js/dojo/",
        parseOnLoad : true
      };
    </script>
    <script type="text/javascript" src="js/dojo/dojo/dojo.js"></script>
    <script>
      dojo.require("dojo.parser");
      dojo.require("dijit.form.Button");
      dojo.require("dijit.Dialog");
      dojo.require("dijit.form.TextBox");
      dojo.addOnLoad(showDialog);
      dojo.addOnLoad(hideDialog);
      function showDialog() {
        dijit.byId('dialog1').show();
      }
    </script>
  </head>
  <body class="tundra">
   <div dojoType="dijit.Dialog" id="dialog1" title="Login">
      <form validate="true">
        <table width="180" border="0" cellspacing="0" cellpadding="0">
           <tr><td><div dojoType="dijit.form.DropDownButton">
              <span>Change Password</span>
              <div dojoType="dijit.TooltipDialog" id="dialog12" title="First Dialog" execute="checkPw(arguments[0]);">
                <table>
                  <tr>
                      <td><label for="desc">Password: </label></td>
                      <td><input dojoType="dijit.form.TextBox" type="password" name="confirmpw" id="confirmpw"></td>
                  </tr>
                  <tr>
                      <td colspan="2" align="center">
                          <button dojoType=dijit.form.Button type="submit" onclick="alert("submit");">Submit</button></td>
                  </tr>
                </table>
              </div>
          </div>
        </td>
        </tr>
        </table>
      </form>
    </div>
  </body>
</html>

   
  
Dojo-toolkit.zip( 3,849 k)
Related examples in the same category
1.Create data input dialog
2.Get date from dialog
3.Dialog button action
4.Hide dialog
5.Simple dialog
6.Login dialog
7.Create a dialog declaratively
8.Create a dialog with your code
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.