Create TabContainer : TabContainer « 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 » TabContainer 
Create TabContainer
 
<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.layout.ContentPane");
      dojo.require("dijit.layout.TabContainer");
      dojo.addOnLoad(show);

      function show() {
        var myDijit = new dijit.layout.TabContainer({
          style : "width:800px;height:600px;"
        });
        dojo.byId("my").appendChild(myDijit.domNode);
        var myPane1 = new dijit.layout.ContentPane({title : "A", closable : true });
        myPane1.setContent("A");
        myDijit.addChild(myPane1);
        var myPane2 = new dijit.layout.ContentPane({title : "B" });
        myPane2.setContent("B");
        myDijit.addChild(myPane2);
        var myPane3 = new dijit.layout.ContentPane({
          title : "C", selected : true,
          href : "http://www.java2java.com" });
        myDijit.addChild(myPane3);
        myDijit.startup();
      }
    </script>
  </head>
  <body class="tundra">
        <div id="my">&nbsp;</div>
  </body>
</html>

   
  
Dojo-toolkit.zip( 3,849 k)
Related examples in the same category
1.Set Tab position
2.Set tab title
3.Three tabs
4.Tabbed pane with title
5.Create Tab container
6.Close tab event
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.