Close tab event : TabContainer « Dojo toolkit « JavaScript DHTML






Close tab event

 

<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("dijit.layout.TabContainer");
            dojo.require("dijit.layout.ContentPane");
            dojo.require("dojo.parser");
            dojo.require("dojo.Button"); 
           
    </script>
  </head>
  <body class="tundra" onload=f()>
    <div dojoType="dijit.layout.TabContainer" style="width:225px; height:100px; margin:5px;">
    <div dojoType="dijit.layout.ContentPane" title="one">One</div>
    <div dojoType="dijit.layout.ContentPane" title="two">Two</div>
    <div dojoType="dijit.layout.ContentPane" title="three" closable="true">Three
        <script type="dojo/method" event="onClose" args="evt">
            alert("Closing", this.title);
            return true; //must return true for close to occur!
        </script>
    </div>
    <div dojoType="dijit.layout.ContentPane" title="blue">
        four
    </div>
</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.Create TabContainer