<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>
|