Simple dialog : Dialog « Dojo toolkit « JavaScript DHTML






Simple 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.Dialog");
            dojo.addOnLoad(function(  ) {
                dijit.byId("dialog").show(  );
            });
    </script>
  </head>
  <body class="tundra" onload=f()>
 <div id="dialog" dojoType="dijit.Dialog">
          Dialog
        </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.Popup dialog
6.Login dialog
7.Create a dialog declaratively
8.Create a dialog with your code